:root {
  --color-burgundy: #4b0710;
  --color-burgundy-dark: #2b0308;
  --color-burgundy-deep: #160104;
  --color-gold: #d7a349;
  --color-gold-light: #f2c978;
  --color-gold-soft: #e8c98b;
  --color-cream: #f7efe2;
  --color-cream-light: #fffaf2;
  --color-paper: #f4eadb;
  --color-brown: #442917;
  --color-text: #2b1a12;
  --color-muted: #6c5547;
  --color-white: #ffffff;
  --color-black: #080404;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Lato", sans-serif;
  --shadow-soft: 0 22px 70px rgba(68, 41, 23, 0.16);
  --shadow-warm: 0 18px 48px rgba(75, 7, 16, 0.22);
  --border-gold: 1px solid rgba(215, 163, 73, 0.56);
  --container: 1240px;
  --header-height: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at top left, rgba(215, 163, 73, 0.08), transparent 30%),
    linear-gradient(180deg, #fff8ec 0%, #f4eadb 100%);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    linear-gradient(90deg, rgba(68, 41, 23, 0.3) 1px, transparent 1px),
    linear-gradient(0deg, rgba(68, 41, 23, 0.22) 1px, transparent 1px);
  background-size: 34px 34px;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

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

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  background: var(--color-gold-light);
  color: var(--color-burgundy-deep);
}

.site-main {
  overflow: hidden;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker__crown {
  width: 42px;
  height: 28px;
  overflow: visible;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

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

.section-heading h2,
.page-band h2,
.cf7-section h2,
.faq-section h2,
.gallery-section h2 {
  margin: 0 0 16px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-heading p:last-child {
  margin: 0;
  color: var(--color-muted);
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 15px 26px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

.btn:hover .icon,
.btn:focus-visible .icon,
.text-link:hover .icon,
.text-link:focus-visible .icon {
  transform: translateX(5px);
}

.btn-primary-gold {
  background: linear-gradient(135deg, #f2c978, #d7a349);
  color: #2b1208;
  border-color: var(--color-gold-light);
}

.btn-primary-burgundy {
  background: linear-gradient(135deg, var(--color-burgundy), var(--color-burgundy-dark));
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-outline-gold,
.btn-outline-light {
  background: transparent;
  color: var(--color-gold-light);
  border-color: var(--color-gold);
}

.btn-outline-light {
  color: var(--color-white);
}

.btn-outline-gold:hover,
.btn-outline-light:hover {
  background: rgba(215, 163, 73, 0.1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  background:
    linear-gradient(90deg, rgba(22, 1, 4, 0.98), rgba(75, 7, 16, 0.98) 44%, rgba(43, 3, 8, 0.98));
  border-bottom: 1px solid rgba(215, 163, 73, 0.72);
  color: var(--color-white);
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(22, 1, 4, 0.98);
  box-shadow: 0 10px 34px rgba(8, 4, 4, 0.38);
}

body.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  width: min(100% - 64px, 1370px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-logo {
  display: inline-flex;
  width: 230px;
  max-width: 230px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--color-gold-light);
  line-height: 1;
  text-align: center;
}

.site-logo__image {
  width: auto;
  max-width: 220px;
  max-height: 72px;
}

.site-logo__mark {
  display: block;
  width: 112px;
  margin-bottom: -3px;
}

.site-logo__crown {
  width: 112px;
  height: 56px;
}

.site-logo__text strong {
  display: block;
  font-size: 26px;
  line-height: 0.9;
  letter-spacing: 0;
}

.site-logo__text small {
  display: block;
  margin-top: 5px;
  padding-top: 4px;
  border-top: 1px solid rgba(242, 201, 120, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.site-navigation {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.primary-menu,
.footer-menu,
.language-switcher {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: rgba(255, 250, 242, 0.92);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.primary-menu .current-menu-item > a,
.primary-menu a:hover,
.primary-menu a:focus-visible {
  color: var(--color-gold-light);
}

.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
  transform: scaleX(1);
}

.site-navigation__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-switcher {
  gap: 12px;
}

.flag {
  display: block;
  width: 26px;
  height: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.22);
}

.flag-pl {
  background: linear-gradient(#fff 0 50%, #dc2f3f 50% 100%);
}

.flag-ua {
  background: linear-gradient(#2c6dd2 0 50%, #ffd447 50% 100%);
}

.header-reserve {
  min-height: 46px;
  padding: 14px 24px;
}

.nav-close {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-white);
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--color-burgundy-deep);
  color: var(--color-white);
}

.hero__image,
.page-hero__image,
.specials-panel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image {
  transform: scale(1.04);
  animation: heroImageIn 1.4s ease forwards;
}

@keyframes heroImageIn {
  to {
    transform: scale(1);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 4, 4, 0.92) 0%, rgba(22, 1, 4, 0.78) 34%, rgba(22, 1, 4, 0.28) 61%, rgba(22, 1, 4, 0.12) 100%),
    linear-gradient(180deg, rgba(22, 1, 4, 0.2), rgba(22, 1, 4, 0.3));
}

.hero__content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
}

.hero__copy {
  max-width: 690px;
  padding: 68px 0 76px;
}

.hero__title {
  margin: 0 0 24px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 78px;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero__text {
  max-width: 540px;
  margin: 0 0 34px;
  color: rgba(255, 250, 242, 0.92);
  font-size: 20px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.feature-section {
  position: relative;
  padding: 30px 0 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 163, 73, 0.08), transparent 32%),
    linear-gradient(180deg, var(--color-cream-light), var(--color-cream));
}

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

.feature-card {
  min-height: 226px;
  padding: 28px 22px 24px;
  border: var(--border-gold);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.74);
  box-shadow: 0 12px 36px rgba(68, 41, 23, 0.06);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-soft);
}

.feature-card__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  color: var(--color-gold);
  transition: transform 0.25s ease;
}

.feature-card:hover .feature-card__icon {
  transform: translateY(-3px) rotate(-3deg);
}

.feature-card__icon .icon {
  width: 48px;
  height: 48px;
}

.feature-card h2 {
  margin: 0 0 10px;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
}

.feature-card p {
  min-height: 54px;
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.45;
}

.feature-section__ornament {
  position: absolute;
  top: 78px;
  width: 82px;
  height: 160px;
  opacity: 0.32;
  color: var(--color-gold);
  border-left: 2px solid currentColor;
}

.feature-section__ornament::before,
.feature-section__ornament::after {
  content: "";
  position: absolute;
  left: 8px;
  width: 34px;
  height: 58px;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 60px 0 0;
}

.feature-section__ornament::before {
  top: 8px;
}

.feature-section__ornament::after {
  top: 82px;
  transform: scaleY(-1);
}

.feature-section__ornament--left {
  left: 28px;
}

.feature-section__ornament--right {
  right: 28px;
  transform: scaleX(-1);
}

.contact-strip {
  background:
    linear-gradient(90deg, var(--color-burgundy-dark), var(--color-burgundy), var(--color-burgundy-dark));
  color: var(--color-cream-light);
}

.contact-strip__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1.2fr 0.9fr;
  min-height: 104px;
  align-items: center;
}

.contact-strip__item {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 26px;
  border-right: 1px solid rgba(255, 250, 242, 0.18);
}

.contact-strip__item:last-child {
  border-right: 0;
}

.contact-strip__icon {
  width: 36px;
  height: 36px;
  color: var(--color-gold-light);
}

.contact-strip span {
  display: block;
  color: var(--color-gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-strip p {
  margin: 4px 0 0;
  color: var(--color-cream-light);
  line-height: 1.45;
}

.contact-languages {
  margin-top: 10px;
}

.home-duo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.innovation-panel {
  min-height: 560px;
  background:
    radial-gradient(circle at top left, rgba(215, 163, 73, 0.11), transparent 34%),
    linear-gradient(180deg, var(--color-cream-light), var(--color-paper));
}

.innovation-panel__inner {
  width: min(100% - 72px, 690px);
  min-height: 560px;
  margin-left: auto;
  padding: 58px 42px 48px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr;
  gap: 22px;
  align-items: center;
}

.innovation-panel h2,
.specials-panel h2,
.testimonials-section h2 {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 43px;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

.innovation-panel__copy > p:not(.section-kicker) {
  margin: 0 0 24px;
  color: var(--color-muted);
  line-height: 1.55;
}

.benefit-list {
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
}

.benefit-list__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 163, 73, 0.45);
  border-radius: 999px;
  background: rgba(242, 201, 120, 0.16);
  color: var(--color-gold);
}

.benefit-list strong {
  display: block;
  color: var(--color-text);
  line-height: 1.25;
}

.benefit-list small {
  display: block;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.35;
}

.innovation-panel__visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.phone-image,
.phone-mockup {
  width: min(230px, 100%);
  transform: rotate(9deg);
  animation: phoneFloat 5.4s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

.phone-mockup {
  min-height: 405px;
  padding: 13px;
  border: 8px solid #121012;
  border-radius: 30px;
  background: #121012;
  box-shadow: 0 30px 70px rgba(68, 41, 23, 0.28);
}

.phone-mockup__top {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, var(--color-burgundy-dark), var(--color-burgundy));
  color: var(--color-gold-light);
  font-size: 11px;
  letter-spacing: 0;
}

.phone-mockup__top span {
  width: 12px;
  height: 12px;
  margin-inline: 11px;
  border-radius: 999px;
  border: 1px solid rgba(242, 201, 120, 0.55);
}

.phone-mockup__screen {
  min-height: 320px;
  padding: 16px 14px 18px;
  border-radius: 0 0 20px 20px;
  background: var(--color-cream-light);
}

.phone-mockup__screen p {
  margin: 14px 0 8px;
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 900;
}

.phone-mockup__screen p:first-child {
  margin-top: 0;
}

.phone-mockup dl,
.phone-mockup dd {
  margin: 0;
}

.phone-mockup dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(215, 163, 73, 0.2);
  color: var(--color-brown);
  font-size: 12px;
}

.specials-panel {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-burgundy-dark);
}

.specials-panel__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(75, 7, 16, 0.94), rgba(75, 7, 16, 0.62) 44%, rgba(75, 7, 16, 0.18)),
    linear-gradient(0deg, rgba(22, 1, 4, 0.24), rgba(22, 1, 4, 0.08));
}

.specials-panel__content {
  position: relative;
  z-index: 1;
  width: min(100% - 72px, 560px);
  min-height: 560px;
  padding: 72px 0 50px 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.specials-panel h2 {
  color: var(--color-white);
  font-size: 48px;
}

.specials-panel p:not(.section-kicker) {
  max-width: 430px;
  margin: 0 0 28px;
  color: rgba(255, 250, 242, 0.9);
}

.specials-panel .btn {
  width: fit-content;
}

.testimonials-section {
  padding: 34px 0 40px;
  background: linear-gradient(180deg, var(--color-cream-light), var(--color-cream));
}

.testimonials-section__grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 30px;
  align-items: start;
}

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

.testimonial {
  position: relative;
  min-height: 160px;
  padding: 6px 30px 6px 58px;
  border-left: 1px solid rgba(68, 41, 23, 0.18);
}

.testimonial__quote {
  position: absolute;
  left: 24px;
  top: -10px;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 1;
}

.testimonial p {
  margin: 0 0 18px;
  color: var(--color-brown);
  font-size: 15px;
  line-height: 1.5;
}

.testimonial strong {
  display: block;
  margin-bottom: 2px;
  line-height: 1.25;
}

.testimonial__stars {
  display: block;
  color: var(--color-gold);
  font-size: 16px;
  line-height: 1.2;
}

.faq-section,
.gallery-section,
.cf7-section,
.page-band,
.menu-page-section {
  padding: 88px 0;
}

.faq-section {
  background:
    radial-gradient(circle at bottom right, rgba(75, 7, 16, 0.08), transparent 30%),
    var(--color-paper);
}

.faq-section__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 58px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(215, 163, 73, 0.5);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.76);
  overflow: hidden;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  text-align: left;
  font-weight: 900;
}

.faq-question__sign {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.faq-question__sign::before,
.faq-question__sign::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  width: 16px;
  height: 2px;
  background: var(--color-gold);
  transition: transform 0.25s ease;
}

.faq-question__sign::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-question__sign::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer__inner {
  padding: 0 24px 22px;
  color: var(--color-muted);
}

.faq-answer p {
  margin: 0;
}

.gallery-section {
  background:
    linear-gradient(180deg, var(--color-cream-light), var(--color-paper));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 18px;
}

.gallery-grid--large {
  grid-auto-rows: 250px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--color-burgundy-dark);
  box-shadow: 0 14px 38px rgba(68, 41, 23, 0.12);
}

.gallery-item--1,
.gallery-item--6 {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--3 {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery-item--1 img,
.gallery-item--4 img {
  object-position: left center;
}

.gallery-item--2 img,
.gallery-item--5 img {
  object-position: center center;
}

.gallery-item--3 img,
.gallery-item--6 img {
  object-position: right center;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(22, 1, 4, 0.72));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after,
.gallery-item:hover span {
  opacity: 1;
}

.gallery-item:hover span {
  transform: translateY(0);
}

.cf7-section {
  background:
    radial-gradient(circle at top right, rgba(215, 163, 73, 0.1), transparent 32%),
    linear-gradient(180deg, var(--color-paper), var(--color-cream-light));
}

.cf7-section__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.cf7-section__grid--copy-only {
  grid-template-columns: minmax(0, 1fr);
}

.cf7-section__copy p:not(.section-kicker) {
  margin: 0 0 24px;
  color: var(--color-muted);
}

.contact-mini-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-mini-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-brown);
}

.contact-mini-list .icon {
  color: var(--color-gold);
}

.cf7-card,
.reservation-card,
.order-widget {
  padding: 32px;
  border: 1px solid rgba(215, 163, 73, 0.42);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.84);
  box-shadow: var(--shadow-soft);
}

.cf7-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 26px;
  border: 1px dashed rgba(215, 163, 73, 0.55);
  color: var(--color-muted);
  text-align: center;
}

.wpcf7 input,
.wpcf7 textarea,
.wpcf7 select,
.reservation-card input,
.reservation-card textarea,
.reservation-card select,
.order-widget input,
.order-widget textarea,
.order-widget select {
  width: 100%;
  border: 1px solid rgba(215, 163, 73, 0.45);
  background: #fffaf2;
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--color-text);
  font-family: var(--font-body);
}

.wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}

.wpcf7-submit,
.reservation-card button,
.reservation-card input[type="submit"],
.order-widget button,
.order-widget input[type="submit"] {
  width: auto;
  min-height: 52px;
  background: var(--color-burgundy);
  color: #fff;
  border: 1px solid var(--color-gold);
  border-radius: 0;
  padding: 15px 26px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 900;
}

.site-footer {
  color: rgba(255, 250, 242, 0.86);
  background:
    linear-gradient(90deg, var(--color-burgundy-deep), var(--color-burgundy-dark));
  border-top: 1px solid var(--color-gold);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 54px;
  padding: 58px 0 46px;
}

.site-footer .site-logo {
  align-items: flex-start;
  text-align: left;
}

.site-logo--footer {
  margin-bottom: 20px;
}

.site-footer p {
  max-width: 360px;
  margin: 0;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--color-gold-light);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.footer-menu {
  display: grid;
  gap: 8px;
}

.footer-menu a,
.site-footer address a {
  color: rgba(255, 250, 242, 0.86);
}

.footer-menu a:hover,
.site-footer address a:hover {
  color: var(--color-gold-light);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 163, 73, 0.62);
  border-radius: 999px;
  color: var(--color-gold-light);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--color-gold-light);
  background: var(--color-gold);
  color: var(--color-burgundy-deep);
}

.social-links .icon {
  width: 19px;
  height: 19px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 250, 242, 0.1);
  padding: 16px 0;
  font-size: 14px;
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-burgundy-deep);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 1, 4, 0.9), rgba(75, 7, 16, 0.58), rgba(75, 7, 16, 0.16)),
    linear-gradient(180deg, rgba(8, 4, 4, 0.1), rgba(8, 4, 4, 0.32));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 86px 0 72px;
}

.page-hero h1 {
  max-width: 800px;
  margin: 0 0 20px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 68px;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.page-hero p:not(.section-kicker) {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 250, 242, 0.9);
  font-size: 18px;
}

.page-band,
.menu-page-section {
  background:
    radial-gradient(circle at top left, rgba(215, 163, 73, 0.08), transparent 28%),
    linear-gradient(180deg, var(--color-cream-light), var(--color-paper));
}

.split-layout,
.about-story__grid,
.reservation-page__grid,
.contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.split-layout img,
.about-story__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.page-content {
  margin-top: 22px;
}

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

.value-grid article,
.contact-card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(215, 163, 73, 0.45);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 12px 34px rgba(68, 41, 23, 0.08);
}

.value-grid .icon,
.contact-card .icon {
  width: 44px;
  height: 44px;
  color: var(--color-gold);
}

.value-grid h2,
.contact-card h2 {
  margin-top: 20px;
  font-size: 30px;
}

.page-cta {
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(22, 1, 4, 0.96), rgba(75, 7, 16, 0.92)),
    var(--color-burgundy);
  color: var(--color-white);
}

.page-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.page-cta h2 {
  max-width: 720px;
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.04;
}

.menu-paper {
  position: relative;
  max-width: 1040px;
  margin-inline: auto;
  padding: 56px;
  border: 1px solid rgba(215, 163, 73, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(247, 239, 226, 0.94));
  box-shadow: var(--shadow-soft);
}

.menu-paper::before {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(215, 163, 73, 0.24);
}

.menu-category {
  position: relative;
  z-index: 1;
  margin-bottom: 46px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category h2 {
  margin-bottom: 10px;
  padding-bottom: 12px;
  /* border-bottom: 1px solid rgba(215, 163, 73, 0.45); */
  color: var(--color-burgundy);
}

.menu-items {
  display: grid;
  gap: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(68, 41, 23, 0.14);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.menu-item:last-child {
  border-bottom: 0;
}

.menu-item__image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 150px;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(215, 163, 73, 0.42);
  border-radius: 6px;
  background: var(--color-burgundy-deep);
}

.menu-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.menu-item__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(22, 1, 4, 0.72));
  opacity: 0.32;
  transition: opacity 0.25s ease;
}

.menu-item__zoom {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: 30px;
  height: 30px;
  justify-content: center;
  border: 1px solid rgba(242, 201, 120, 0.75);
  border-radius: 999px;
  background: rgba(22, 1, 4, 0.78);
  color: var(--color-white);
}

.menu-item__zoom .icon {
  width: 16px;
  height: 16px;
}

.menu-item__zoom span {
  display: none;
}

.menu-item__image:hover img {
  transform: scale(1.055);
}

.menu-item__image:hover::after {
  opacity: 0.85;
}

.menu-item__content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.menu-item h3 {
  margin: 0 0 6px;
  color: var(--color-text);
  font-size: 20px;
}

.menu-item p {
  margin: 0;
  color: var(--color-muted);
}

.menu-item strong {
  padding-left: 18px;
  border-left: 1px solid rgba(215, 163, 73, 0.38);
  color: var(--color-burgundy);
  font-size: 17px;
  white-space: nowrap;
}

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

.contact-card {
  min-height: 210px;
}

.opening-hours {
  padding: 36px;
  border: 1px solid rgba(215, 163, 73, 0.45);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.8);
}

.opening-hours dl,
.opening-hours dd {
  margin: 0;
}

.opening-hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(68, 41, 23, 0.12);
}

.opening-hours dt {
  font-weight: 900;
}

.map-frame,
.map-placeholder {
  min-height: 360px;
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 8px;
  filter: sepia(0.18) saturate(0.92);
}

.map-placeholder {
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px dashed rgba(215, 163, 73, 0.55);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.74);
  color: var(--color-muted);
  text-align: center;
}

.reservation-page__grid {
  align-items: start;
}

.reservation-card {
  padding: 0;
  overflow: hidden;
}

.reservation-rules {
  padding: 40px;
  border-left: 3px solid var(--color-gold);
}

.reservation-rules ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding-left: 20px;
  color: var(--color-muted);
}

.order-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.order-options span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(215, 163, 73, 0.5);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.66);
  color: var(--color-brown);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(8, 4, 4, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox__dialog {
  position: relative;
  width: min(100%, 1100px);
  max-height: 90vh;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(215, 163, 73, 0.5);
  background: var(--color-black);
}

.lightbox p {
  margin: 12px 56px 0 0;
  color: var(--color-cream-light);
}

.lightbox__close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-gold);
  border-radius: 999px;
  background: var(--color-burgundy);
  color: var(--color-white);
  font-size: 24px;
  line-height: 1;
}

.post-list {
  display: grid;
  gap: 28px;
}

.post-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  padding: 26px;
  border: 1px solid rgba(215, 163, 73, 0.38);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.75);
}

.post-card__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.post-card h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.05;
}

.post-card__meta {
  margin: 0 0 8px;
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1200px) {
  .feature-section__ornament {
    display: none;
  }

  .feature-grid {
    gap: 18px;
  }

  .innovation-panel__inner {
    width: min(100% - 44px, 650px);
    padding-right: 20px;
  }

  .specials-panel__content {
    padding-left: 42px;
  }
}

@media (max-width: 992px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .site-header__inner {
    width: min(100% - 32px, 1370px);
  }

  .site-logo {
    width: 180px;
    max-width: 180px;
    align-items: flex-start;
    text-align: left;
  }

  .site-logo__mark {
    width: 86px;
  }

  .site-logo__crown {
    width: 86px;
    height: 38px;
  }

  .site-logo__text strong {
    font-size: 20px;
  }

  .site-logo__text small {
    font-size: 10px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-close {
    display: inline-flex;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-gold);
    border-radius: 999px;
    background: transparent;
    color: var(--color-white);
    font-size: 26px;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-close:hover,
  .nav-close:focus-visible {
    background: var(--color-gold);
    color: var(--color-black);
  }

  .site-navigation {
    position: fixed;
    top: 0;
    right: 0;
    width: min(380px, calc(100% - 34px));
    height: 100vh;
    padding: 104px 28px 34px;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    background: linear-gradient(180deg, var(--color-burgundy-dark), var(--color-burgundy-deep));
    border-left: 1px solid var(--color-gold);
    box-shadow: -20px 0 60px rgba(8, 4, 4, 0.4);
    transform: translateX(100%);
    transition: transform 0.28s ease;
  }

  body.nav-open .site-navigation {
    transform: translateX(0);
  }

  .primary-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .primary-menu a {
    min-height: 52px;
    font-size: 18px;
  }

  .site-navigation__actions {
    margin-top: 22px;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-reserve {
    width: 100%;
  }

  .hero__title {
    font-size: 62px;
  }

  .hero__text {
    font-size: 18px;
  }

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

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

  .contact-strip__item:nth-child(2) {
    border-right: 0;
  }

  .home-duo {
    grid-template-columns: 1fr;
  }

  .innovation-panel__inner {
    width: min(100% - 36px, 760px);
    margin-inline: auto;
    padding: 58px 0;
  }

  .specials-panel__content {
    width: min(100% - 36px, 760px);
    min-height: 520px;
    margin-inline: auto;
    padding: 58px 0;
  }

  .testimonials-section__grid,
  .faq-section__inner,
  .cf7-section__grid,
  .split-layout,
  .about-story__grid,
  .reservation-page__grid {
    grid-template-columns: 1fr;
  }

  .testimonial-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .testimonial {
    border: 1px solid rgba(215, 163, 73, 0.35);
    border-radius: 8px;
    background: rgba(255, 250, 242, 0.66);
    padding: 28px 30px 28px 58px;
  }

  .testimonial__quote {
    left: 20px;
    top: -8px;
  }

  .gallery-grid,
  .gallery-grid--large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .gallery-item--1,
  .gallery-item--6,
  .gallery-item--3 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .site-footer__grid,
  .contact-page__grid,
  .value-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero h1 {
    font-size: 56px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 768px) {
  .section-heading h2,
  .page-band h2,
  .cf7-section h2,
  .faq-section h2,
  .gallery-section h2,
  .innovation-panel h2,
  .specials-panel h2,
  .testimonials-section h2,
  .page-cta h2 {
    font-size: 38px;
  }

  .hero,
  .hero__content {
    min-height: 620px;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(8, 4, 4, 0.9), rgba(22, 1, 4, 0.72)),
      linear-gradient(180deg, rgba(22, 1, 4, 0.24), rgba(22, 1, 4, 0.48));
  }

  .hero__copy {
    padding: 56px 0 66px;
  }

  .hero__title {
    font-size: 48px;
  }

  .hero__actions,
  .hero__actions .btn {
    width: 100%;
  }

  .feature-grid,
  .contact-strip__grid {
    grid-template-columns: 1fr;
  }

  .contact-strip__item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 242, 0.16);
  }

  .contact-strip__item:last-child {
    border-bottom: 0;
  }

  .innovation-panel__inner {
    grid-template-columns: 1fr;
  }

  .innovation-panel__visual {
    min-height: 360px;
  }

  .phone-mockup {
    width: 220px;
  }

  .menu-paper {
    padding: 34px 22px;
  }

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

  .menu-item {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
    padding: 14px 0;
  }

  .menu-item__image {
    width: 112px;
  }

  .menu-item__content {
    grid-template-columns: 1fr;
    gap: 7px;
    align-items: start;
  }

  .menu-item strong {
    padding-left: 0;
    border-left: 0;
  }

  .site-footer .site-logo {
    width: 220px;
  }

  .post-card {
    grid-template-columns: 1fr;
  }
}

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

  .site-header__inner {
    width: min(100% - 24px, 1370px);
  }

  .site-logo {
    width: 164px;
  }

  .site-logo__text strong {
    font-size: 18px;
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__text,
  .page-hero p:not(.section-kicker) {
    font-size: 16px;
  }

  .hero__actions {
    gap: 14px;
  }

  .btn {
    width: 100%;
    padding-inline: 18px;
  }

  .feature-card {
    min-height: 210px;
  }

  .specials-panel__content {
    min-height: 500px;
  }

  .faq-section,
  .gallery-section,
  .cf7-section,
  .page-band,
  .menu-page-section {
    padding: 62px 0;
  }

  .gallery-grid,
  .gallery-grid--large {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .page-hero {
    min-height: 370px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .cf7-card,
  .reservation-card,
  .order-widget,
  .opening-hours {
    padding: 22px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox__close {
    top: 10px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

.icon-image {
  width: 1em;
  height: 1em;
  object-fit: contain;
}

.feature-card__icon .icon-image,
.benefit-list__icon .icon-image,
.about-values .icon-image,
.menu-category-nav .icon-image,
.menu-category__heading .icon-image,
.seasonal-banner li .icon-image {
  width: 100%;
  height: 100%;
}

.social-links .icon-image {
  width: 20px;
  height: 20px;
}

.menu-card__badge {
  display: inline-flex;
  margin: 0 0 8px;
  padding: 5px 10px;
  border: 1px solid rgba(214, 177, 106, 0.42);
  border-radius: 999px;
  color: var(--color-gold-light);
  font-size: 11px;
  line-height: 1;
}

.menu-labels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin: 0 0 10px;
}

.menu-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 24px;
  padding: 4px 8px;
  border: 1px solid rgba(214, 177, 106, 0.36);
  border-radius: 999px;
  background: rgba(255, 244, 223, 0.06);
  color: var(--color-gold-light);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.menu-label__icon {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.menu-label--spicy {
  border-color: rgba(228, 107, 104, 0.5);
  color: #ff9a82;
}

.menu-label--vegan,
.menu-label--vegetarian {
  border-color: rgba(137, 180, 111, 0.5);
  color: #b7d48f;
}

.news-section,
.news-page-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 0, rgba(110, 16, 36, 0.18), transparent 28%),
    #110708;
}

.news-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.news-section__header .section-heading {
  margin-bottom: 0;
}

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

.news-grid--listing {
  margin-top: 34px;
}

.news-card {
  overflow: hidden;
  border: 1px solid rgba(214, 177, 106, 0.38);
  border-radius: 22px 10px 22px 10px;
  background: linear-gradient(145deg, rgba(48, 12, 19, 0.92), rgba(17, 7, 8, 0.96));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.news-card__image {
  display: block;
  height: 220px;
  overflow: hidden;
}

.news-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.86);
  transition: transform 0.45s ease;
}

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

.news-card__content {
  padding: 22px;
}

.news-card h2,
.news-card h3,
.news-featured h2 {
  margin: 0 0 12px;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.news-card h3 {
  font-size: 29px;
}

.news-card p:not(.post-card__meta),
.news-featured p:not(.section-kicker):not(.post-card__meta) {
  color: var(--color-muted);
  font-size: 14px;
}

.news-featured {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(214, 177, 106, 0.5);
  border-radius: 38px 14px 38px 14px;
  background: linear-gradient(145deg, rgba(72, 12, 27, 0.76), rgba(17, 7, 8, 0.98));
}

.news-featured__image {
  display: block;
  overflow: hidden;
  border-radius: 29px 10px 29px 10px;
}

.news-featured__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.news-featured__content {
  padding: 34px 28px;
}

.news-pagination {
  margin-top: 42px;
}

.news-pagination .nav-links,
.news-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.news-pagination .page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(214, 177, 106, 0.38);
  border-radius: 999px;
  color: var(--color-gold-light);
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
  background: rgba(199, 154, 75, 0.14);
  border-color: var(--color-gold);
}

.block-editor-page .acf-pk-block [data-animate],
.acf-block-preview .acf-pk-block [data-animate] {
  opacity: 1;
  transform: none;
}

@media (max-width: 992px) {
  .news-section__header,
  .news-featured {
    grid-template-columns: 1fr;
  }

  .news-section__header {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .news-section,
  .news-page-section {
    padding: 62px 0;
  }

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

  .news-featured__image img {
    height: 280px;
  }
}

/* Premium 2.0 redesign */
:root {
  --color-burgundy: #5a0b1d;
  --color-burgundy-dark: #310711;
  --color-burgundy-deep: #130608;
  --color-gold: #c79a4b;
  --color-gold-light: #e4c17f;
  --color-gold-soft: #d6b16a;
  --color-cream: #f6ead8;
  --color-cream-light: #fff6e8;
  --color-paper: #eadbc5;
  --color-brown: #2a1710;
  --color-text: #fff4df;
  --color-muted: #c8b9a8;
  --shadow-soft: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shadow-warm: 0 18px 60px rgba(90, 11, 29, 0.44);
  --border-gold: 1px solid rgba(214, 177, 106, 0.46);
  --container: 1320px;
  --header-height: 88px;
}

::selection {
  background: var(--color-gold);
  color: var(--color-burgundy-deep);
}

body {
  padding-top: 0;
  background:
    radial-gradient(circle at 15% 5%, rgba(110, 16, 36, 0.2), transparent 26%),
    radial-gradient(circle at 82% 38%, rgba(199, 154, 75, 0.06), transparent 24%),
    linear-gradient(145deg, #100607, #1b080c 52%, #0d0606);
  color: var(--color-text);
  font-family: var(--font-body);
}

body::before {
  z-index: 0;
  opacity: 0.09;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0 0.6px, transparent 0.8px),
    linear-gradient(110deg, transparent 0 48%, rgba(214, 177, 106, 0.14) 50%, transparent 52%);
  background-size: 8px 8px, 170px 170px;
}

.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

.section-kicker {
  color: var(--color-gold-light);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.ornament-divider,
.hero__divider {
  display: block;
  width: 150px;
  height: 10px;
  margin: 18px 0 20px;
  background:
    radial-gradient(circle, var(--color-gold-light) 0 2px, transparent 2.5px) center / 10px 10px no-repeat,
    linear-gradient(90deg, transparent, var(--color-gold), transparent) center / 100% 1px no-repeat;
}

.btn {
  min-height: 50px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: none;
  backdrop-filter: blur(12px);
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 4px;
}

.btn-primary-burgundy {
  background: linear-gradient(135deg, #78152e, #4b0714);
  border-color: var(--color-gold);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.1), 0 12px 34px rgba(75, 7, 20, 0.34);
}

.btn-outline-gold {
  background: rgba(17, 7, 7, 0.38);
  color: var(--color-gold-light);
}

.btn-outline-gold:hover,
.btn-outline-gold:focus-visible {
  background: rgba(199, 154, 75, 0.12);
  box-shadow: 0 0 34px rgba(199, 154, 75, 0.18);
}

.site-header {
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(9, 4, 4, 0.7), transparent);
  border-bottom: 0;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 5% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 177, 106, 0.34), transparent);
}

.site-header.is-scrolled {
  background: rgba(14, 6, 7, 0.82);
  border-bottom: 1px solid rgba(214, 177, 106, 0.25);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  width: min(100% - 56px, 1420px);
}

.site-logo {
  width: 210px;
  max-width: 210px;
}

.site-logo__image {
  max-width: 205px;
  max-height: 70px;
}

.primary-menu {
  gap: 30px;
}

.primary-menu a {
  color: rgba(255, 244, 223, 0.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
}

.primary-menu .current-menu-item > a::after,
.primary-menu a:hover::after,
.primary-menu a:focus-visible::after {
  transform: scaleX(1);
}

.header-reserve {
  min-height: 44px;
  gap: 10px;
  padding: 12px 20px;
}

.header-reserve .icon {
  width: 16px;
  height: 16px;
}

.hero-shell {
  padding: 8px;
}

.hero {
  min-height: 720px;
  height: calc(100svh - 16px);
  max-height: 940px;
  border: 1px solid rgba(214, 177, 106, 0.58);
  border-radius: 34px 34px 70px 70px;
  box-shadow: inset 0 0 0 7px rgba(7, 3, 3, 0.32), 0 38px 90px rgba(0, 0, 0, 0.42);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border-color: rgba(214, 177, 106, 0.5);
  border-style: solid;
}

.hero::before {
  inset: 16px;
  border-width: 1px;
  border-radius: 24px 24px 60px 60px;
}

.hero::after {
  right: 12%;
  bottom: 18px;
  left: 12%;
  height: 30px;
  border-width: 0 0 1px;
  border-radius: 50%;
}

.hero__image {
  filter: saturate(0.84) contrast(1.06) brightness(0.78);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(10, 4, 4, 0.96) 0%, rgba(37, 6, 11, 0.86) 34%, rgba(22, 5, 7, 0.22) 66%, rgba(9, 4, 4, 0.38) 100%),
    linear-gradient(180deg, rgba(8, 3, 3, 0.2), rgba(8, 3, 3, 0.65));
}

.hero__glow {
  position: absolute;
  z-index: 1;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(232, 168, 73, 0.12);
  filter: blur(55px);
  animation: candleGlow 4.4s ease-in-out infinite alternate;
}

.hero__glow--one {
  top: 18%;
  right: 27%;
}

.hero__glow--two {
  right: 7%;
  bottom: 12%;
  animation-delay: -2s;
}

@keyframes candleGlow {
  to { opacity: 0.52; transform: scale(0.8); }
}

.hero__content {
  min-height: 100%;
}

.hero__copy {
  max-width: 660px;
  padding-top: 120px;
}

.hero__kicker {
  gap: 12px;
}

.hero__kicker .section-kicker__crown {
  width: 27px;
  height: 20px;
}

.hero__title {
  max-width: 650px;
  margin-bottom: 0;
  color: #f8e7cd;
  font-size: clamp(64px, 6.4vw, 96px);
  font-weight: 500;
  line-height: 0.86;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.hero__title br + br {
  display: none;
}

.hero__title br {
  content: "";
}

.hero__text {
  max-width: 500px;
  margin-bottom: 28px;
  color: rgba(255, 244, 223, 0.78);
  font-size: 16px;
}

.hero__actions {
  gap: 14px;
}

.hero__badge {
  position: absolute;
  z-index: 3;
  right: 8%;
  bottom: 12%;
  width: 142px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border: 1px solid rgba(214, 177, 106, 0.62);
  border-radius: 42% 58% 45% 55% / 55% 42% 58% 45%;
  background: linear-gradient(145deg, rgba(90, 11, 29, 0.92), rgba(28, 7, 10, 0.9));
  color: var(--color-gold-light);
  box-shadow: inset 0 0 0 5px rgba(7, 3, 3, 0.24), 0 18px 60px rgba(0, 0, 0, 0.45);
  text-align: center;
  transform: rotate(4deg);
}

.hero__badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(214, 177, 106, 0.28);
  border-radius: inherit;
}

.hero__badge .icon {
  width: 28px;
  height: 20px;
  margin: 0 auto 8px;
}

.hero__badge strong,
.hero__badge span {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1;
}

.hero__badge span {
  margin-top: 4px;
  font-size: 15px;
}

.feature-section {
  padding: 18px 0 74px;
  background:
    radial-gradient(circle at 50% 0, rgba(199, 154, 75, 0.08), transparent 22%),
    transparent;
}

.feature-grid {
  gap: 14px;
}

.feature-card {
  position: relative;
  min-height: 410px;
  padding: 9px;
  overflow: hidden;
  border-color: rgba(214, 177, 106, 0.5);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 75%, rgba(110, 16, 36, 0.32), transparent 52%),
    linear-gradient(145deg, rgba(42, 13, 17, 0.96), rgba(18, 7, 8, 0.98));
  box-shadow: inset 0 0 0 5px rgba(9, 4, 5, 0.34), 0 20px 50px rgba(0, 0, 0, 0.22);
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 17px;
  pointer-events: none;
  border: 1px solid rgba(214, 177, 106, 0.12);
  border-radius: 23px;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-gold-light);
  box-shadow: 0 20px 70px rgba(87, 12, 28, 0.34), 0 0 32px rgba(199, 154, 75, 0.09);
}

.feature-card__image {
  position: relative;
  z-index: 1;
  display: block;
  height: 175px;
  overflow: hidden;
  border: 1px solid rgba(214, 177, 106, 0.35);
  border-radius: 23px 23px 18px 18px;
}

.feature-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(19, 6, 8, 0.74));
}

.feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1);
}

.feature-card:hover .feature-card__image img {
  transform: scale(1.08);
}

.feature-card__icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: -29px auto 0;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  background: linear-gradient(145deg, #5b1022, #1c080c);
  box-shadow: inset 0 0 0 5px #21090e, 0 8px 24px rgba(0, 0, 0, 0.38);
}

.feature-card__icon .icon {
  width: 25px;
  height: 25px;
}

.feature-card__body {
  position: relative;
  z-index: 2;
  padding: 16px 18px 16px;
}

.feature-card h2 {
  margin-bottom: 8px;
  color: var(--color-gold-light);
  font-size: 31px;
  font-weight: 500;
}

.feature-card p {
  min-height: 66px;
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 13px;
}

.feature-card__link {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(214, 177, 106, 0.55);
  border-radius: 50%;
  color: var(--color-gold-light);
  transition: background 0.25s ease, transform 0.25s ease;
}

.feature-card__link:hover {
  background: rgba(199, 154, 75, 0.14);
  transform: translateX(3px);
}

.feature-card__link .icon {
  width: 15px;
  height: 15px;
}

.about-story {
  position: relative;
  padding: 88px 0 100px;
  overflow: hidden;
  border-block: 1px solid rgba(214, 177, 106, 0.17);
  background:
    radial-gradient(circle at 18% 48%, rgba(110, 16, 36, 0.24), transparent 25%),
    linear-gradient(135deg, #100708 0%, #16090b 50%, #0d0909 100%);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story__visual {
  position: relative;
}

.about-story__frame {
  position: relative;
  padding: 9px;
  border: 1px solid rgba(214, 177, 106, 0.5);
  border-radius: 28px 70px 28px 70px;
  background: rgba(199, 154, 75, 0.04);
  box-shadow: var(--shadow-soft);
  transform: rotate(-2deg);
}

.about-story__frame::before {
  content: "";
  position: absolute;
  inset: 17px;
  z-index: 1;
  border: 1px solid rgba(214, 177, 106, 0.26);
  border-radius: 20px 60px 20px 60px;
  pointer-events: none;
}

.about-story__frame img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  border-radius: 21px 62px 21px 62px;
  filter: sepia(0.08) saturate(0.8);
}

.about-story__seal {
  position: absolute;
  right: 6%;
  bottom: -36px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 2px solid #8e2540;
  border-radius: 45% 55% 48% 52%;
  background: radial-gradient(circle, #7d1832, #460714);
  color: var(--color-gold-light);
  box-shadow: inset 0 0 0 7px rgba(38, 4, 11, 0.3), 0 12px 30px rgba(0, 0, 0, 0.42);
  transform: rotate(-12deg);
}

.about-story__seal .icon {
  width: 43px;
  height: 27px;
}

.about-story__copy h2,
.menu-preview h2,
.gallery-section h2,
.testimonials-section h2,
.home-cta h2 {
  margin: 0;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.94;
}

.about-story__copy > p:not(.section-kicker) {
  max-width: 600px;
  margin: 0 0 28px;
  color: var(--color-muted);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.about-values li {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.about-values span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(214, 177, 106, 0.35);
  border-radius: 50%;
  color: var(--color-gold-light);
}

.about-values strong {
  color: rgba(255, 244, 223, 0.78);
  font-size: 11px;
  line-height: 1.3;
}

.menu-preview {
  position: relative;
  padding: 86px 0 96px;
  overflow: hidden;
  border-block: 1px solid rgba(214, 177, 106, 0.35);
  background:
    radial-gradient(circle at 10% 0, rgba(173, 32, 61, 0.22), transparent 28%),
    radial-gradient(circle at 90% 100%, rgba(199, 154, 75, 0.08), transparent 28%),
    linear-gradient(145deg, #4b0a19, #24070e 48%, #17080a);
}

.menu-preview__header,
.gallery-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

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

.dish-card {
  padding: 8px 8px 18px;
  overflow: hidden;
  border: 1px solid rgba(214, 177, 106, 0.44);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(42, 12, 17, 0.96), rgba(17, 7, 8, 0.96));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.dish-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

.dish-card__image {
  display: block;
  height: 190px;
  overflow: hidden;
  border-radius: 15px;
}

.dish-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dish-card:hover img {
  transform: scale(1.07);
}

.dish-card__body {
  padding: 18px 8px 0;
}

.dish-card h3 {
  margin: 0 0 4px;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.dish-card p {
  margin: 0 0 10px;
  color: var(--color-muted);
  font-size: 12px;
}

.dish-card strong,
.menu-card strong,
.chef-special strong {
  color: #e46b68;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.menu-dish-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.menu-portion {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 3px 8px;
  border: 1px solid rgba(214, 177, 106, 0.28);
  border-radius: 999px;
  color: rgba(255, 244, 223, 0.72);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.gallery-section {
  padding: 92px 0;
  background:
    radial-gradient(circle at 5% 50%, rgba(110, 16, 36, 0.22), transparent 24%),
    #100708;
}

.gallery-section .section-heading {
  max-width: 660px;
  margin: 0;
}

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

.gallery-grid {
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-item {
  border: 1px solid rgba(214, 177, 106, 0.4);
  border-radius: 18px;
  box-shadow: inset 0 0 0 5px rgba(10, 4, 4, 0.34);
}

.gallery-item img {
  filter: saturate(0.78) brightness(0.84);
}

.testimonials-section {
  padding: 74px 0 82px;
  border-top: 1px solid rgba(214, 177, 106, 0.25);
  background:
    radial-gradient(circle at 80% 0, rgba(110, 16, 36, 0.25), transparent 28%),
    linear-gradient(145deg, #22080e, #110708);
}

.testimonials-section__grid {
  grid-template-columns: 350px 1fr;
}

.testimonial-list {
  gap: 14px;
}

.testimonial {
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(214, 177, 106, 0.38);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(199, 154, 75, 0.09), transparent 25%),
    rgba(71, 12, 25, 0.42);
  box-shadow: inset 0 0 0 5px rgba(10, 4, 4, 0.12);
}

.testimonial__quote {
  top: 13px;
  right: 24px;
  left: auto;
  color: rgba(214, 177, 106, 0.28);
  font-size: 72px;
}

.testimonial p {
  margin-top: 30px;
  color: var(--color-muted);
}

.testimonial strong {
  color: var(--color-cream);
}

.home-cta {
  padding: 32px 0 72px;
  background: #100708;
}

.home-cta__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 54px 64px;
  overflow: hidden;
  border: 1px solid rgba(214, 177, 106, 0.5);
  border-radius: 40px 14px 40px 14px;
  background: #1c060a;
  box-shadow: var(--shadow-soft);
}

.home-cta__inner::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(214, 177, 106, 0.2);
  border-radius: 32px 10px 32px 10px;
  pointer-events: none;
  z-index: 3;
}

.home-cta__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(28, 6, 10, 0.94), rgba(58, 8, 19, 0.72));
  pointer-events: none;
}

.home-cta__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.82) brightness(0.86);
}

.home-cta__inner > :not(.home-cta__image) {
  position: relative;
  z-index: 2;
}

.home-cta h2 {
  max-width: 780px;
  font-size: clamp(40px, 4vw, 60px);
}

.home-cta p:not(.section-kicker) {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--color-muted);
}

.page-hero {
  min-height: 600px;
  padding-top: var(--header-height);
  border-bottom: 1px solid rgba(214, 177, 106, 0.42);
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(214, 177, 106, 0.36);
  border-radius: 28px 28px 70px 70px;
}

.page-hero__image {
  filter: brightness(0.6) saturate(0.76);
}

.page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(13, 5, 6, 0.94), rgba(45, 8, 16, 0.58), rgba(8, 4, 4, 0.25)),
    linear-gradient(180deg, rgba(8, 4, 4, 0.15), rgba(8, 4, 4, 0.7));
}

.page-hero__content {
  max-width: var(--container);
  text-align: left;
}

.page-hero h1 {
  color: var(--color-cream);
  font-size: clamp(66px, 8vw, 108px);
  font-weight: 500;
}

.page-hero p:not(.section-kicker) {
  max-width: 600px;
  color: rgba(255, 244, 223, 0.78);
}

.menu-category-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  padding: 14px 0;
  border-block: 1px solid rgba(214, 177, 106, 0.26);
  background: rgba(18, 7, 8, 0.86);
  backdrop-filter: blur(18px);
}

.menu-category-nav .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-inline: max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(214, 177, 106, 0.45) transparent;
  -webkit-overflow-scrolling: touch;
}

.menu-category-nav .container::-webkit-scrollbar {
  height: 4px;
}

.menu-category-nav .container::-webkit-scrollbar-track {
  background: transparent;
}

.menu-category-nav .container::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(214, 177, 106, 0.45);
}

.menu-category-nav a {
  flex: 0 0 auto;
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(214, 177, 106, 0.34);
  border-radius: 999px;
  color: rgba(255, 244, 223, 0.75);
  font-size: 12px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.menu-category-nav a:hover,
.menu-category-nav a.is-active {
  border-color: var(--color-gold);
  background: linear-gradient(135deg, #73142d, #360812);
  color: var(--color-gold-light);
}

.menu-category-nav .icon {
  width: 17px;
  height: 17px;
}

.menu-page-section {
  padding: 76px 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(110, 16, 36, 0.18), transparent 25%),
    #110708;
}

.menu-page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

.menu-page-layout--wide {
  grid-template-columns: 1fr;
}

.menu-sections {
  display: grid;
  gap: 54px;
}

.menu-empty-state {
  max-width: 760px;
  padding: 44px;
  border: 1px solid rgba(214, 177, 106, 0.42);
  border-radius: 24px 10px 24px 10px;
  background: linear-gradient(145deg, rgba(48, 12, 19, 0.72), rgba(17, 7, 8, 0.94));
  box-shadow: var(--shadow-soft);
}

.menu-empty-state h2 {
  margin: 0 0 12px;
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
}

.menu-empty-state p:last-child {
  margin: 0;
  color: var(--color-muted);
}

.menu-category {
  margin: 0;
}

.menu-category__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--color-gold-light);
}

.menu-category__heading h2 {
  margin: 0;
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 500;
}

.menu-category__heading span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 177, 106, 0.5), transparent);
}

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

.menu-card {
  padding: 7px 7px 16px;
  overflow: hidden;
  border: 1px solid rgba(214, 177, 106, 0.38);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(48, 12, 19, 0.92), rgba(17, 7, 8, 0.96));
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-7px);
  border-color: var(--color-gold);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.menu-card__image {
  display: block;
  height: 270px;
  overflow: hidden;
  border-radius: 13px;
}

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

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

.menu-card__body {
  padding: 15px 8px 0;
}

.menu-card h3,
.chef-special h3 {
  margin: 0 0 5px;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 500;
  line-height: 1;
}

.menu-card p,
.chef-special p:not(.section-kicker) {
  min-height: 42px;
  margin: 0 0 9px;
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.4;
}

.menu-page-layout--list {
  gap: 30px;
}

.menu-page-layout--list.menu-page-layout--wide .menu-sections {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

.menu-list {
  display: grid;
  gap: 12px;
}

.menu-list-item {
  position: relative;
  overflow: hidden;
  padding: 22px 24px;
  border: 1px solid rgba(214, 177, 106, 0.32);
  border-radius: 18px 8px 18px 8px;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 177, 106, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(48, 12, 19, 0.72), rgba(17, 7, 8, 0.94));
  box-shadow: inset 0 1px rgba(255, 244, 223, 0.04), 0 14px 36px rgba(0, 0, 0, 0.18);
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.menu-list-item::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--color-gold-light), rgba(214, 177, 106, 0.18));
}

.menu-list-item:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 177, 106, 0.72);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.menu-list-item__heading {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.menu-list-item h3 {
  min-width: 0;
  margin: 0;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.05;
}

.menu-list-item__leader {
  flex: 1 1 40px;
  min-width: 40px;
  border-bottom: 1px dashed rgba(214, 177, 106, 0.38);
  transform: translateY(-7px);
}

.menu-list-item__price {
  color: #e46b68;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.2;
  white-space: nowrap;
}

.menu-list-item__details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-top: 10px;
}

.menu-list-item__details .menu-labels {
  justify-content: flex-start;
  gap: 5px;
  margin: 0;
}

.menu-list-item p {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(255, 244, 223, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.chef-special {
  position: sticky;
  top: calc(var(--header-height) + 92px);
  padding: 24px 8px 28px;
  border: 1px solid rgba(214, 177, 106, 0.58);
  border-radius: 36px 15px 36px 15px;
  background:
    radial-gradient(circle at 50% 0, rgba(145, 27, 53, 0.32), transparent 28%),
    linear-gradient(145deg, #3a0b17, #150708);
  box-shadow: inset 0 0 0 7px rgba(8, 3, 4, 0.24), var(--shadow-soft);
  text-align: center;
}

.chef-special__icon {
  width: 48px;
  height: 36px;
  display: block;
  margin-inline: auto;
  color: var(--color-gold-light);
}

.chef-special__icon .icon {
  width: 100%;
  height: 100%;
}

.chef-special h2 {
  margin: -8px 0 20px;
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 500;
}

.chef-special img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 18px;
  border: 1px solid rgba(214, 177, 106, 0.48);
  border-radius: 25px 10px 25px 10px;
}

.chef-special--compact {
  padding: 26px 22px 28px;
  text-align: left;
}

.chef-special--compact .chef-special__icon {
  margin-inline: 0;
}

.chef-special--compact h2 {
  margin: -4px 0 16px;
}

.chef-special--compact .menu-labels,
.chef-special--compact .menu-dish-meta {
  justify-content: flex-start;
}

.seasonal-banner {
  padding: 0 0 80px;
  background: #110708;
}

.seasonal-banner__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr;
  gap: 32px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(214, 177, 106, 0.5);
  border-radius: 38px 14px 38px 14px;
  background: linear-gradient(145deg, rgba(72, 12, 27, 0.76), rgba(17, 7, 8, 0.98));
}

.seasonal-banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 29px 10px 29px 10px;
}

.seasonal-banner h2 {
  margin: 0 0 14px;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 500;
  line-height: 0.98;
}

.seasonal-banner p:not(.section-kicker) {
  color: var(--color-muted);
  font-size: 13px;
}

.seasonal-banner ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0 24px 0 0;
  list-style: none;
}

.seasonal-banner li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 244, 223, 0.8);
  font-size: 12px;
}

.seasonal-banner li .icon {
  color: var(--color-gold-light);
}

.page-band,
.cf7-section,
.faq-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(110, 16, 36, 0.18), transparent 28%),
    #110708;
  color: var(--color-text);
}

.page-band h2,
.cf7-section h2,
.faq-section h2,
.value-grid h2,
.contact-card h2 {
  color: var(--color-cream);
}

.page-band p,
.cf7-section p,
.reservation-rules ul,
.value-grid article p {
  color: var(--color-muted);
}

.value-grid article,
.contact-card,
.opening-hours,
.cf7-card,
.reservation-card,
.order-widget {
  border-color: rgba(214, 177, 106, 0.38);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(58, 12, 23, 0.7), rgba(17, 7, 8, 0.94));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
  color: var(--color-text);
}

.reservation-card .acrt-booking {
  --acrt-burgundy: #6e1024;
  --acrt-burgundy-dark: #310711;
  --acrt-gold: #c79a4b;
  --acrt-gold-light: #e4c17f;
  --acrt-cream: #fff6e8;
  --acrt-paper: #f6ead8;
  --acrt-text: #2a1710;
  --acrt-muted: #745d50;
  margin: 0;
  border-radius: 22px;
  box-shadow: none;
}

.reservation-card .acrt-booking .button,
.reservation-card .acrt-booking .acrt-check,
.reservation-card .acrt-booking .acrt-submit {
  border-radius: 999px;
  text-transform: none;
}

.reservation-rules {
  padding: 42px;
  border: 1px solid rgba(214, 177, 106, 0.38);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(199, 154, 75, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(58, 12, 23, 0.7), rgba(17, 7, 8, 0.94));
}

.reservation-rules ul {
  gap: 18px;
  padding: 0;
  list-style: none;
}

.reservation-rules li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 13px;
  align-items: start;
}

.reservation-rules li > .icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(214, 177, 106, 0.38);
  border-radius: 50%;
  color: var(--color-gold-light);
}

.reservation-rules li strong,
.reservation-rules li span {
  display: block;
}

.reservation-rules li strong {
  color: var(--color-cream);
  font-size: 13px;
}

.reservation-rules li span {
  color: var(--color-muted);
  font-size: 12px;
}

.split-layout img,
.about-story__image img {
  border: 1px solid rgba(214, 177, 106, 0.4);
  border-radius: 28px 12px 28px 12px;
  filter: saturate(0.82) brightness(0.83);
}

.page-cta {
  border-block: 1px solid rgba(214, 177, 106, 0.35);
}

.site-footer {
  overflow: hidden;
  border-top: 1px solid rgba(214, 177, 106, 0.42);
  background:
    radial-gradient(circle at 0 100%, rgba(110, 16, 36, 0.42), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(110, 16, 36, 0.3), transparent 24%),
    linear-gradient(145deg, #370914, #170709 55%, #0d0606);
}

.site-footer::before,
.site-footer::after {
  content: "❧";
  position: absolute;
  color: rgba(214, 177, 106, 0.18);
  font-family: var(--font-heading);
  font-size: 180px;
  line-height: 1;
  pointer-events: none;
}

.site-footer::before {
  bottom: 10px;
  left: -30px;
  transform: rotate(-35deg);
}

.site-footer::after {
  top: 0;
  right: -25px;
  transform: rotate(135deg);
}

.site-footer__grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1.15fr 0.8fr 1fr 1fr;
  gap: 48px;
  padding-block: 64px 50px;
}

.site-footer h2 {
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
}

.site-footer p,
.site-footer a,
.site-footer address,
.site-footer dd,
.site-footer dt {
  color: rgba(255, 244, 223, 0.66);
  font-size: 12px;
}

.site-footer__hours dl,
.site-footer__hours dd {
  margin: 0;
}

.site-footer__hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 5px 0;
}

.site-footer__hours p {
  margin-top: 14px;
  color: var(--color-gold-light);
}

.site-footer__bottom {
  border-top-color: rgba(214, 177, 106, 0.18);
}

.site-footer__bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 1100px) {
  .hero__badge {
    right: 5%;
  }

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

  .about-story__grid {
    gap: 46px;
  }

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

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

  .chef-special {
    position: relative;
    top: auto;
    max-width: 520px;
    margin-inline: auto;
  }

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

  .seasonal-banner__inner {
    grid-template-columns: 1fr 1fr;
  }

  .seasonal-banner ul {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    padding: 12px 22px 22px;
  }
}

@media (max-width: 992px) {
  .site-header {
    height: 78px;
  }

  .site-navigation {
    background:
      radial-gradient(circle at top right, rgba(110, 16, 36, 0.45), transparent 28%),
      rgba(17, 7, 8, 0.97);
    backdrop-filter: blur(18px);
  }

  .site-navigation__actions {
    align-items: stretch;
  }

  .primary-menu {
    gap: 0;
  }

  .hero {
    min-height: 680px;
    max-height: none;
  }

  .hero__copy {
    padding-top: 100px;
  }

  .hero__badge {
    display: none;
  }

  .about-story__grid,
  .testimonials-section__grid {
    grid-template-columns: 1fr;
  }

  .about-story__visual {
    max-width: 700px;
    margin-inline: auto;
  }

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

  .testimonial {
    padding: 24px;
  }

  .home-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 768px) {
  .hero-shell {
    padding: 5px;
  }

  .hero {
    min-height: 680px;
    height: auto;
    border-radius: 24px 24px 50px 50px;
  }

  .hero::before {
    inset: 9px;
    border-radius: 18px 18px 42px 42px;
  }

  .hero__image {
    object-position: 64% center;
  }

  .hero__overlay {
    background:
      linear-gradient(90deg, rgba(10, 4, 4, 0.95), rgba(29, 6, 10, 0.73)),
      linear-gradient(180deg, rgba(8, 3, 3, 0.15), rgba(8, 3, 3, 0.7));
  }

  .hero__copy {
    padding: 130px 0 72px;
  }

  .hero__title {
    font-size: clamp(48px, 15vw, 70px);
  }

  .feature-section {
    padding-bottom: 54px;
  }

  .feature-grid,
  .dish-grid,
  .testimonial-list,
  .menu-card-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 400px;
  }

  .feature-card__image,
  .dish-card__image,
  .menu-card__image {
    height: 220px;
  }

  .about-story {
    padding: 70px 0;
  }

  .about-story__seal {
    width: 72px;
    height: 72px;
    bottom: -22px;
  }

  .about-values {
    gap: 18px;
  }

  .menu-preview__header,
  .gallery-section__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-section__header .btn,
  .menu-preview__header .btn {
    width: auto;
  }

  .testimonials-section {
    padding-block: 66px;
  }

  .home-cta__inner {
    padding: 42px 28px;
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero h1 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .menu-category-nav {
    top: 78px;
  }

  .seasonal-banner__inner {
    grid-template-columns: 1fr;
  }

  .seasonal-banner ul {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

  .site-footer__bottom .container {
    flex-direction: column;
    gap: 2px;
  }
}

@media (max-width: 576px) {
  .hero__actions .btn,
  .home-cta .btn {
    width: 100%;
  }

  .feature-card {
    border-radius: 24px;
  }

  .about-story__copy h2,
  .menu-preview h2,
  .gallery-section h2,
  .testimonials-section h2 {
    font-size: 48px;
  }

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

  .about-values li {
    grid-template-columns: 38px 1fr;
    align-items: center;
  }

  .about-values span {
    grid-row: span 2;
  }

  .gallery-grid {
    grid-auto-rows: 250px;
  }

  .menu-page-section {
    padding-block: 54px;
  }

  .menu-list-item {
    padding: 18px 16px 18px 18px;
  }

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

  .menu-list-item__leader {
    display: none;
  }

  .menu-list-item h3 {
    font-size: 24px;
  }

  .menu-category__heading h2 {
    font-size: 34px;
  }

  .seasonal-banner h2 {
    font-size: 38px;
  }
}

/* Competition polish pass */
body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 32%, rgba(130, 24, 49, 0.13), transparent 22%),
    radial-gradient(circle at 78% 65%, rgba(199, 154, 75, 0.07), transparent 18%);
  animation: ambientDrift 18s ease-in-out infinite alternate;
}

@keyframes ambientDrift {
  0% { transform: translate3d(-2%, -1%, 0) scale(0.96); opacity: 0.65; }
  100% { transform: translate3d(3%, 2%, 0) scale(1.06); opacity: 1; }
}

@keyframes goldPulse {
  0%, 100% { opacity: 0.42; filter: drop-shadow(0 0 0 rgba(214, 177, 106, 0)); }
  50% { opacity: 0.9; filter: drop-shadow(0 0 8px rgba(214, 177, 106, 0.28)); }
}

@keyframes gentleFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--float-rotation, 0deg)); }
  50% { transform: translate3d(0, -10px, 0) rotate(var(--float-rotation, 0deg)); }
}

@keyframes heroLight {
  0%, 100% { filter: saturate(0.82) contrast(1.06) brightness(0.76); }
  50% { filter: saturate(0.92) contrast(1.08) brightness(0.83); }
}

@keyframes botanicalDraw {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.32; }
  50% { stroke-dashoffset: 42; opacity: 0.68; }
}

.hero__image {
  animation: heroLight 8s ease-in-out infinite;
}

.site-header {
  background: linear-gradient(180deg, rgba(9, 4, 4, 0.44), rgba(9, 4, 4, 0.08));
  backdrop-filter: blur(7px);
}

.site-header.is-scrolled {
  background: rgba(14, 6, 7, 0.62);
  backdrop-filter: blur(20px) saturate(1.12);
}

.hero__title-accent {
  display: inline-block;
  color: #f4c982;
  font-style: italic;
  font-weight: 600;
  text-shadow:
    0 0 24px rgba(214, 177, 106, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.5);
}

.hero__divider {
  position: relative;
  overflow: visible;
  background-size: 0 1px;
}

.hero__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 1px solid var(--color-gold-light);
  border-radius: 50%;
  background: #2b0911;
  box-shadow: 0 0 14px rgba(214, 177, 106, 0.55);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}

.hero__divider.is-visible {
  animation: heroDividerLine 1.2s cubic-bezier(.2,.8,.2,1) forwards, heroDividerGlow 4s ease-in-out 1.2s infinite;
}

.hero__divider.is-visible::after {
  animation: heroDividerGem 0.7s ease 0.75s forwards, heroDividerGemPulse 3s ease-in-out 1.45s infinite;
}

@keyframes heroDividerLine {
  from { background-size: 0 1px; }
  to { background-size: 100% 1px; }
}

@keyframes heroDividerGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(214, 177, 106, 0)); opacity: 0.72; }
  50% { filter: drop-shadow(0 0 7px rgba(214, 177, 106, 0.4)); opacity: 1; }
}

@keyframes heroDividerGem {
  to { opacity: 1; transform: translate(-50%, -50%) rotate(45deg) scale(1); border-radius: 2px; }
}

@keyframes heroDividerGemPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(214, 177, 106, 0.35); }
  50% { box-shadow: 0 0 20px rgba(214, 177, 106, 0.7); }
}

@property --orbit-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@property --orbit-span {
  syntax: "<angle>";
  inherits: false;
  initial-value: 38deg;
}

.btn-orbit {
  isolation: isolate;
  border-width: 1.5px;
  border-color: rgba(214, 177, 106, 0.4);
  background: rgba(21, 7, 9, 0.38);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.045),
    0 0 0 1px rgba(199, 154, 75, 0.04),
    0 0 14px rgba(199, 154, 75, 0.055);
}

.btn-orbit > * {
  position: relative;
  z-index: 1;
}

.btn-orbit::before {
  --orbit-angle: 0deg;
  --orbit-span: 38deg;
  content: "";
  position: absolute;
  z-index: 0;
  inset: -2px;
  padding: 2px;
  pointer-events: none;
  border-radius: inherit;
  background: conic-gradient(
    from var(--orbit-angle),
    rgba(214, 177, 106, 0.38) 0deg,
    rgba(255, 238, 199, 1) 10deg,
    rgba(214, 177, 106, 0.98) calc(var(--orbit-span) - 16deg),
    rgba(214, 177, 106, 0.38) var(--orbit-span),
    rgba(214, 177, 106, 0.38) 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: orbitBorder 3.4s linear infinite;
  transition: --orbit-span 0.62s cubic-bezier(.22,.8,.2,1), filter 0.35s ease;
}

.btn-orbit:hover,
.btn-orbit:focus-visible {
  border-color: rgba(214, 177, 106, 0.32);
  background: rgba(71, 13, 27, 0.42);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(199, 154, 75, 0.07),
    0 0 20px rgba(199, 154, 75, 0.12);
}

.btn-orbit:hover::before,
.btn-orbit:focus-visible::before {
  --orbit-span: 360deg;
  animation-play-state: paused;
  filter: drop-shadow(0 0 8px rgba(214, 177, 106, 0.62));
}

@keyframes orbitBorder {
  to { --orbit-angle: 360deg; }
}

.hero__badge {
  --float-rotation: 4deg;
  animation: gentleFloat 5.5s ease-in-out infinite;
}

.ornament-divider,
.hero__divider {
  animation: goldPulse 4s ease-in-out infinite;
}

.feature-card__icon,
.about-values span {
  animation: goldPulse 5s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-card__icon,
.about-values li:nth-child(2) span {
  animation-delay: -1.2s;
}

.feature-card:nth-child(3) .feature-card__icon,
.about-values li:nth-child(3) span {
  animation-delay: -2.4s;
}

.feature-card:nth-child(4) .feature-card__icon,
.about-values li:nth-child(4) span {
  animation-delay: -3.6s;
}

@media (min-width: 1200px) {
  .hero__content {
    padding-inline: 28px;
  }

  .hero__copy {
    width: 900px;
    max-width: 900px;
  }

  .hero__title {
    width: 900px;
    max-width: 900px;
    font-size: clamp(66px, 4.65vw, 88px);
    line-height: 0.92;
  }

  .hero__text {
    max-width: 560px;
  }
}

.menu-preview {
  isolation: isolate;
  border-radius: 58px 16px 58px 16px;
  box-shadow:
    inset 0 0 0 8px rgba(8, 3, 4, 0.24),
    inset 0 0 90px rgba(199, 154, 75, 0.035);
}

.menu-preview::before,
.menu-preview::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.menu-preview::before {
  inset: 12px;
  border: 1px solid rgba(214, 177, 106, 0.22);
  border-radius: 48px 12px 48px 12px;
}

.menu-preview::after {
  top: 54px;
  right: 14%;
  left: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 177, 106, 0.38), transparent);
  animation: goldPulse 5s ease-in-out infinite;
}

.menu-preview .container {
  position: relative;
  z-index: 2;
}

.botanical-ornament {
  position: absolute;
  z-index: 1;
  bottom: -72px;
  width: 230px;
  height: 470px;
  pointer-events: none;
  stroke: var(--color-gold-light);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10 5;
  opacity: 0.42;
  animation: botanicalDraw 12s linear infinite;
}

.botanical-ornament--left {
  left: -54px;
  transform: rotate(-8deg);
}

.botanical-ornament--right {
  right: -54px;
  transform: scaleX(-1) rotate(-8deg);
  animation-delay: -6s;
}

.dish-card,
.contact-card,
.value-grid article {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.dish-card::before,
.contact-card::before,
.value-grid article::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -45%;
  left: -70%;
  width: 45%;
  height: 190%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 230, 182, 0.09), transparent);
  transform: rotate(18deg);
  animation: cardSheen 9s ease-in-out infinite;
}

.dish-card:nth-child(2)::before,
.contact-card:nth-child(2)::before,
.value-grid article:nth-child(2)::before {
  animation-delay: -3s;
}

.dish-card:nth-child(3)::before,
.contact-card:nth-child(3)::before,
.value-grid article:nth-child(3)::before {
  animation-delay: -6s;
}

@keyframes cardSheen {
  0%, 62% { left: -70%; opacity: 0; }
  70% { opacity: 1; }
  88%, 100% { left: 145%; opacity: 0; }
}

.reservation-page__grid {
  grid-template-columns: minmax(0, 1.55fr) minmax(310px, 0.65fr);
  align-items: start;
}

.reservation-rules {
  position: relative;
  top: auto;
  max-height: none;
  overflow: visible;
}

.reservation-summary {
  margin: 28px 0 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(214, 177, 106, 0.3);
}

.reservation-summary h3 {
  margin: 0 0 12px;
  color: var(--color-gold-light);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.reservation-summary dl {
  display: grid;
  margin: 0;
  border: 1px solid rgba(214, 177, 106, 0.2);
  border-radius: 12px;
  background: rgba(17, 7, 8, 0.32);
}

.reservation-summary dl > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(214, 177, 106, 0.13);
}

.reservation-summary dl > div:last-child {
  border-bottom: 0;
}

.reservation-summary dt,
.reservation-summary dd {
  margin: 0;
  font-size: 11px;
}

.reservation-summary dt {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--color-muted);
}

.reservation-summary dt .icon {
  width: 15px;
  height: 15px;
  color: var(--color-gold-light);
}

.reservation-summary dd {
  color: var(--color-cream);
  font-weight: 700;
  text-align: right;
}

.acrt-details .reservation-summary {
  margin: 4px 0 18px;
  padding-top: 16px;
}

.acrt-details .reservation-summary dl {
  border-color: rgba(214, 177, 106, 0.28);
}

.contact-page-main .contact-page {
  padding-bottom: 42px;
}

.contact-page-main .contact-page__grid {
  gap: 18px;
}

.contact-page-main .contact-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 34px;
  border-color: rgba(214, 177, 106, 0.52);
  border-radius: 30px 12px 30px 12px;
  background:
    radial-gradient(circle at 100% 0, rgba(199, 154, 75, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(80, 14, 30, 0.88), rgba(17, 7, 8, 0.98));
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.contact-page-main .contact-card::after {
  content: "";
  position: absolute;
  inset: 9px;
  pointer-events: none;
  border: 1px solid rgba(214, 177, 106, 0.15);
  border-radius: 23px 9px 23px 9px;
}

.contact-page-main .contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold-light);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.contact-page-main .contact-card .icon {
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid rgba(214, 177, 106, 0.48);
  border-radius: 50%;
  color: var(--color-gold-light);
}

.contact-page-main .contact-card h2 {
  margin: 24px 0 8px;
  color: var(--color-cream);
  font-size: 34px;
}

.contact-page-main .contact-card p,
.contact-page-main .contact-card a {
  position: relative;
  z-index: 3;
  color: rgba(255, 244, 223, 0.82);
  font-size: 15px;
}

.contact-page-main .contact-card a:hover,
.contact-mini-list a:hover {
  color: var(--color-gold-light);
}

.contact-page-main .contact-details {
  padding-top: 42px;
}

.contact-page-main .opening-hours,
.contact-page-main .map-frame,
.contact-page-main .map-placeholder {
  border-radius: 30px 12px 30px 12px;
}

.contact-page-main .opening-hours {
  min-height: 390px;
  padding: 42px;
  border-color: rgba(214, 177, 106, 0.48);
}

.contact-page-main .opening-hours h2 {
  margin-top: 0;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 46px;
  font-weight: 500;
}

.contact-page-main .opening-hours dl div {
  border-bottom-color: rgba(214, 177, 106, 0.18);
}

.contact-page-main .opening-hours dt {
  color: rgba(255, 244, 223, 0.8);
}

.contact-page-main .opening-hours dd {
  color: var(--color-gold-light);
}

.contact-page-main .map-placeholder {
  min-height: 390px;
  align-content: center;
  gap: 8px;
  border-style: solid;
  border-color: rgba(214, 177, 106, 0.48);
  background:
    radial-gradient(circle at center, rgba(110, 16, 36, 0.42), transparent 44%),
    linear-gradient(145deg, #290a11, #110708);
}

.contact-page-main .map-placeholder span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  color: var(--color-gold-light);
  animation: gentleFloat 4s ease-in-out infinite;
}

.contact-page-main .map-placeholder strong {
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
}

.contact-page-main .map-placeholder p {
  color: var(--color-muted);
}

.contact-page-main .cf7-section {
  position: relative;
  padding-top: 62px;
  border-top: 1px solid rgba(214, 177, 106, 0.28);
  background:
    radial-gradient(circle at 10% 15%, rgba(117, 18, 42, 0.28), transparent 24%),
    linear-gradient(145deg, #21080e, #100708);
}

.contact-page-main .cf7-section__grid {
  align-items: stretch;
}

.contact-page-main .cf7-section__copy {
  padding: 42px;
  border: 1px solid rgba(214, 177, 106, 0.35);
  border-radius: 34px 12px 34px 12px;
  background: rgba(46, 10, 18, 0.5);
}

.contact-page-main .cf7-section h2 {
  color: var(--color-cream);
  font-size: clamp(44px, 4vw, 62px);
}

.contact-page-main .cf7-section__copy > p:not(.section-kicker) {
  color: rgba(255, 244, 223, 0.72);
}

.contact-page-main .contact-mini-list li,
.contact-page-main .contact-mini-list li span,
.contact-page-main .contact-mini-list li a {
  color: rgba(255, 244, 223, 0.82);
}

.contact-page-main .contact-mini-list .icon {
  color: var(--color-gold-light);
}

.contact-page-main .cf7-card {
  border-color: rgba(214, 177, 106, 0.42);
  background: linear-gradient(145deg, rgba(58, 12, 23, 0.78), rgba(17, 7, 8, 0.96));
}

.contact-page-main .cf7-placeholder {
  min-height: 100%;
  border-radius: 20px;
  color: rgba(255, 244, 223, 0.72);
}

.contact-page-main .wpcf7 label {
  color: var(--color-cream);
}

.contact-page-main .wpcf7 input,
.contact-page-main .wpcf7 textarea,
.contact-page-main .wpcf7 select {
  border-color: rgba(214, 177, 106, 0.42);
  background: rgba(255, 246, 232, 0.94);
  color: #2a1710;
}

.about-page__story {
  padding-block: 100px 120px;
}

.about-page__story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 86px;
  align-items: center;
}

.about-page__visual {
  position: relative;
  min-height: 600px;
}

.about-page__photo {
  position: absolute;
  overflow: hidden;
  padding: 7px;
  border: 1px solid rgba(214, 177, 106, 0.5);
  background: rgba(199, 154, 75, 0.04);
  box-shadow: var(--shadow-soft);
}

.about-page__photo::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(214, 177, 106, 0.2);
  pointer-events: none;
}

.about-page__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) sepia(0.12);
}

.about-page__photo--main {
  inset: 0 10% 10% 0;
  border-radius: 34px 80px 34px 80px;
  transform: rotate(-2deg);
}

.about-page__photo--main img,
.about-page__photo--main::after {
  border-radius: 27px 72px 27px 72px;
}

.about-page__photo--detail {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 38%;
  border-radius: 50% 18px 50% 18px;
  transform: rotate(4deg);
  animation: gentleFloat 7s ease-in-out infinite;
}

.about-page__photo--detail img,
.about-page__photo--detail::after {
  border-radius: inherit;
}

.about-page__seal {
  position: absolute;
  z-index: 3;
  right: 31%;
  bottom: 2%;
  width: 98px;
  height: 98px;
  display: grid;
  place-items: center;
  border: 2px solid #9a2945;
  border-radius: 48% 52% 45% 55%;
  background: radial-gradient(circle, #841d38, #420711);
  color: var(--color-gold-light);
  box-shadow: inset 0 0 0 7px rgba(30, 4, 9, 0.32), 0 14px 38px rgba(0, 0, 0, 0.45);
  animation: gentleFloat 5s ease-in-out infinite reverse;
}

.about-page__seal .icon {
  width: 48px;
  height: 30px;
}

.about-page__copy h2,
.values-section__heading h2 {
  margin: 0;
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.95;
}

.about-page__copy > p:not(.section-kicker),
.about-page__copy .page-content {
  color: var(--color-muted);
}

.about-page__copy blockquote {
  position: relative;
  margin: 30px 0;
  padding: 22px 24px 22px 30px;
  border-left: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 28px;
  font-style: italic;
  line-height: 1.15;
}

.values-section__heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.values-section .value-grid article {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 32px 12px 32px 12px;
}

.values-section .value-grid article > span {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(214, 177, 106, 0.28);
  font-family: var(--font-heading);
  font-size: 58px;
}

.values-section .value-grid article .icon {
  color: var(--color-gold-light);
}

@media (max-width: 992px) {
  .reservation-page__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .reservation-card,
  .reservation-rules {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .reservation-rules {
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
  }

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

  .about-page__visual {
    min-height: 540px;
  }

  .botanical-ornament {
    opacity: 0.25;
  }
}

@media (max-width: 768px) {
  .reservation-page {
    overflow: hidden;
  }

  .reservation-page__grid {
    gap: 24px;
  }

  .reservation-rules {
    padding: 28px 22px;
  }

  .botanical-ornament {
    display: none;
  }

  .menu-preview {
    border-radius: 34px 10px 34px 10px;
  }

  .contact-page-main .contact-card {
    min-height: 210px;
  }

  .contact-page-main .cf7-section__copy,
  .contact-page-main .opening-hours {
    padding: 30px;
  }

  .about-page__story {
    padding-block: 70px 90px;
  }

  .about-page__visual {
    min-height: 430px;
  }

  .about-page__photo--main {
    inset: 0 4% 8% 0;
  }

  .about-page__photo--detail {
    width: 45%;
    height: 35%;
  }

  .about-page__seal {
    right: 30%;
    width: 76px;
    height: 76px;
  }
}

/* Responsive overrides for Premium 2.0 hero — must come after the premium block */
@media (max-width: 768px) {
  .hero__copy {
    padding-top: 100px;
  }

  .hero__title {
    font-size: clamp(46px, 7.5vw, 64px);
  }
}

@media (max-width: 576px) {
  .hero-shell {
    padding: 4px;
  }

  .hero {
    border-radius: 20px 20px 40px 40px;
    min-height: 580px;
  }

  .hero::before {
    inset: 12px;
    border-radius: 14px 14px 32px 32px;
  }

  .hero__copy {
    padding-top: 100px;
    padding-bottom: 80px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .page-hero__content {
    padding-left: 25px;
    padding-right: 25px;
  }

  .hero__title {
    font-size: clamp(36px, 11vw, 50px);
  }

  .hero__text {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
