@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=Petit+Formal+Script&display=swap");

:root {
  --bg: #0c0907;
  --bg-soft: #15100d;
  --surface: rgba(24, 17, 13, 0.82);
  --surface-strong: rgba(14, 10, 8, 0.94);
  --surface-light: #f4eee3;
  --surface-paper: #f2e7d4;
  --surface-paper-edge: rgba(113, 74, 39, 0.12);
  --text: #f8f1e6;
  --text-soft: rgba(248, 241, 230, 0.76);
  --text-dark: #241813;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #de742b;
  --accent-deep: #9f4319;
  --accent-soft: rgba(222, 116, 43, 0.16);
  --success: #5cb85c;
  --shadow-xl: 0 3.2rem 8rem rgba(0, 0, 0, 0.34);
  --shadow-lg: 0 2rem 5rem rgba(0, 0, 0, 0.24);
  --radius-xl: 3.2rem;
  --radius-lg: 2.4rem;
  --radius-md: 1.8rem;
  --radius-pill: 999px;
  --container: 1340px;
  --transition: 220ms ease;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Petit Formal Script", "Brush Script MT", cursive;
  --font-body: "Manrope", system-ui, sans-serif;
}

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

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  background:
    radial-gradient(circle at top left, rgba(176, 84, 30, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(117, 65, 29, 0.22), transparent 30%),
    linear-gradient(180deg, #100b08 0%, #17110d 34%, #0b0806 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.65;
}

body.loaded {
  overflow-y: auto;
}

body.nav-active {
  overflow: hidden;
}

a,
img,
span,
button {
  display: block;
}

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

img {
  width: 100%;
  height: auto;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

ul,
ol,
li {
  list-style: none;
}

.shell {
  width: min(100% - 4rem, var(--container));
  margin-inline: auto;
}

.preload {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  gap: 1.6rem;
  background: #0c0907;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.preload.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preload .circle {
  width: 6.8rem;
  height: 6.8rem;
  border: 3px solid rgba(255, 255, 255, 0.16);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.preload .text {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-header {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
}

.hero-background,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-background {
  display: block;
}

.hero-background-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-bg-full {
  filter: brightness(0.64) saturate(1.02);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(6, 5, 4, 0.64) 0%, rgba(7, 5, 4, 0.22) 22%, rgba(8, 6, 5, 0.78) 100%),
    linear-gradient(90deg, rgba(8, 6, 5, 0.9) 0%, rgba(9, 7, 5, 0.76) 32%, rgba(9, 7, 5, 0.34) 60%, rgba(8, 6, 5, 0.46) 100%);
}

.top-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  padding: 1rem 0 0;
  transition: padding var(--transition), opacity var(--transition);
}

.hero-header.active .top-nav {
  padding-top: 1rem;
}

.hero-brand {
  position: fixed;
  top: 1rem;
  left: 2.4rem;
  z-index: 31;
  transition: top var(--transition), transform var(--transition), opacity var(--transition);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7.6rem;
  width: min(100% - 4rem, 92rem);
  margin-inline: auto;
  padding: 1.2rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 2.4rem;
  background: rgba(10, 8, 7, 0.38);
  backdrop-filter: blur(14px);
  box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.18);
}

.hero-header.active .nav-shell {
  background: rgba(10, 8, 7, 0.64);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-brand-link {
  display: flex;
  align-items: center;
  min-width: 0;
}

.hero-brand-logo {
  width: auto;
  max-width: 40rem;
  max-height: 15.5rem;
  filter: drop-shadow(0 0.8rem 2.2rem rgba(0, 0, 0, 0.42));
}

.site-brand-name {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.4rem, 2vw, 3.2rem);
}

.desktop-nav a,
.mobile-nav-panel a {
  position: relative;
  color: rgba(255, 244, 235, 0.92);
  font-size: 1.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1;
  transition: color var(--transition);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.9rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.desktop-nav a:hover,
.mobile-nav-panel a:hover {
  color: var(--accent);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-utility {
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.service-status {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: max-content;
  padding: 0.8rem 1.4rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.04);
}

.service-status-dot {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0.6rem rgba(92, 184, 92, 0.14);
}

.service-status.is-closed .service-status-dot {
  background: #b06552;
  box-shadow: 0 0 0 0.6rem rgba(176, 101, 82, 0.14);
}

.service-status-copy strong {
  color: var(--text);
  font-size: 1.45rem;
  font-weight: 700;
}

.service-status-copy span {
  color: var(--text-soft);
  font-size: 1.18rem;
}

.utility-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 5.4rem;
  padding: 0 1.8rem;
  border-radius: var(--radius-pill);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.utility-btn:hover,
.btn:hover,
.footer-link:hover,
.lang-btn:hover,
.takeaway-category-btn:hover,
.takeaway-action-btn:hover {
  transform: translateY(-2px);
}

.utility-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.utility-btn-accent {
  border: 1px solid rgba(223, 121, 53, 0.3);
  background: linear-gradient(135deg, #cf6525, #ea8a40);
  color: #fff7ef;
}

.utility-btn-label {
  font-size: 1.15rem;
}

.utility-btn-value {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.cart-badge,
.takeaway-cart-count {
  min-width: 2.8rem;
  height: 2.8rem;
  padding: 0 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(15, 10, 7, 0.36);
  color: #fff4ea;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
}

.language-switcher {
  display: inline-flex;
  gap: 0.6rem;
}

.mobile-language-switcher {
  display: none;
}

.lang-btn {
  min-width: 4.2rem;
  min-height: 4.4rem;
  padding: 0 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.6rem;
  color: rgba(255, 245, 236, 0.78);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color var(--transition), background-color var(--transition), color var(--transition);
}

.lang-btn.is-active {
  background: rgba(222, 116, 43, 0.14);
  border-color: rgba(222, 116, 43, 0.4);
  color: #fff4eb;
}

.nav-toggle {
  display: none;
  gap: 0.45rem;
  width: 4.8rem;
  height: 4.8rem;
  align-self: center;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.mobile-nav,
.mobile-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 80vh;
  padding-top: 11rem;
  padding-bottom: 7.2rem;
}

.hero-copy {
  max-width: 84rem;
}

.section-kicker,
.hero-kicker {
  color: #e18743;
  font-family: var(--font-script);
  font-size: clamp(2.1rem, 2.8vw, 3.5rem);
  line-height: 1.1;
}

.hero-copy h1,
.section-title,
.menu-section-title,
.takeaway-product-name {
  font-family: var(--font-display);
}

.hero-copy h1 {
  margin-top: 1.2rem;
  color: #fff7f0;
  font-size: clamp(5.2rem, 6.8vw, 8.6rem);
  font-weight: 600;
  line-height: 0.94;
  max-width: none;
  white-space: nowrap;
  text-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.38);
}

.hero-copy .bound-line-break::before {
  content: " ";
}

.hero-copy .bound-line-break {
  display: inline;
}

.hero-subtitle {
  max-width: 62rem;
  margin-top: 1.8rem;
  color: rgba(255, 244, 236, 0.9);
  font-size: clamp(1.72rem, 1.7vw, 2rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 3.4rem;
}

.hero-cta-band {
  position: relative;
  z-index: 2;
  margin-top: -5.4rem;
  padding-bottom: 4.2rem;
}

.hero-service-cta {
  max-width: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 5.8rem;
  padding: 0 2.6rem;
  border-radius: var(--radius-pill);
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

.btn-primary {
  color: #fff7ef;
  background: linear-gradient(135deg, #c95d22, #ec8c41);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 1.6rem 4rem rgba(142, 67, 20, 0.34);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.8rem;
}

.hero-points li,
.takeaway-highlights span {
  padding: 1rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 246, 239, 0.86);
  font-size: 1.28rem;
  line-height: 1.5;
}

main section {
  position: relative;
}

.service-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.8rem;
  min-height: 11.2rem;
  padding: 1.8rem 2.2rem;
  border-radius: 2.6rem;
  background:
    linear-gradient(180deg, rgba(28, 20, 15, 0.95), rgba(22, 16, 13, 0.92)),
    url("../../ChatGPT Image 18_05_2026, 00_08_11.png");
  background-size: cover;
  background-position: center;
  box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.service-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 12, 9, 0.88) 0%, rgba(18, 12, 9, 0.78) 46%, rgba(18, 12, 9, 0.7) 100%);
  pointer-events: none;
}

.service-cta-icon {
  position: relative;
  z-index: 1;
  font-size: 3.2rem;
  line-height: 1;
}

.service-cta-copy {
  position: relative;
  z-index: 1;
}

.service-cta-copy h2 {
  color: #fff5ec;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 2.8vw, 3.6rem);
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.28);
}

.service-cta-copy p {
  max-width: 46rem;
  margin-top: 0.5rem;
  color: rgba(248, 241, 230, 0.82);
  font-size: 1.62rem;
  line-height: 1.6;
}

.service-cta-btn {
  position: relative;
  z-index: 1;
  min-width: 20rem;
}

.editorial-section,
.atmosphere-section,
.reservation-section,
.contacts-section {
  padding: 8rem 0;
}

.editorial-section {
  background:
    linear-gradient(180deg, rgba(247, 240, 229, 0.98), rgba(240, 231, 217, 0.96)),
    radial-gradient(circle at top right, rgba(203, 124, 56, 0.08), transparent 26%);
}

.editorial-section .section-kicker,
.editorial-section .section-title,
.editorial-section .editorial-copy h3,
.editorial-section .editorial-copy p {
  color: var(--text-dark);
}

.editorial-section .section-kicker {
  font-size: clamp(3.2rem, 4.4vw, 5.4rem);
  line-height: 1.08;
}

.editorial-title {
  margin-top: 1.4rem;
  color: var(--text-dark);
  font-size: clamp(4.6rem, 5.2vw, 7.2rem);
}

.section-heading.center {
  text-align: center;
}

.section-title {
  margin-top: 0.8rem;
  color: var(--text);
  font-size: clamp(4.2rem, 5vw, 6.8rem);
  font-weight: 600;
  line-height: 0.95;
  text-wrap: balance;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4.2rem;
}

.editorial-card,
.reservation-card,
.contact-card,
.takeaway-product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.editorial-thumb {
  aspect-ratio: 1.1;
  overflow: hidden;
}

.editorial-thumb img,
.gallery-card img,
.takeaway-product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-copy {
  padding: 2rem;
}

.editorial-copy h3,
.reservation-card h3,
.contact-card h3,
.takeaway-cart h3 {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1;
}

.editorial-copy p,
.reservation-card p,
.contact-card p,
.contacts-text,
.atmosphere-text,
.menu-section-subtitle,
.menu-footnote-copy,
.reservation-subcopy,
.takeaway-subtitle,
.takeaway-product-description,
.takeaway-cart-note {
  color: var(--text-soft);
  font-size: 1.76rem;
  line-height: 1.78;
}

.editorial-copy p,
.reservation-card p,
.contact-card p {
  margin-top: 1.2rem;
}

.menu-section {
  padding: 6rem 0 10rem;
  background:
    linear-gradient(180deg, rgba(240, 231, 217, 0.96), rgba(247, 240, 229, 0.98)),
    radial-gradient(circle at top right, rgba(203, 124, 56, 0.08), transparent 26%);
}

.menu-section .section-kicker,
.menu-section .section-title,
.menu-section .menu-section-subtitle,
.menu-section .menu-footnote-copy,
.menu-section .menu-section-title,
.menu-section .menu-item-name,
.menu-section .menu-section-note,
.menu-section .menu-group-title {
  color: var(--text-dark);
}

.menu-inner {
  position: relative;
}

.menu-section-subtitle {
  max-width: 76rem;
  margin: 1.6rem auto 0;
  color: rgba(36, 24, 19, 0.74);
}

.menu-catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.menu-section-card {
  padding: 2.8rem 2.6rem;
  border: 1px solid var(--surface-paper-edge);
  border-radius: 2.4rem;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 1.8rem 4rem rgba(74, 49, 28, 0.08);
}

.menu-section-title {
  font-size: clamp(3rem, 3.2vw, 4rem);
  line-height: 1;
}

.menu-section-note,
.menu-group-title {
  color: rgba(36, 24, 19, 0.6);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-section-note {
  margin-top: 0.8rem;
}

.menu-group + .menu-group {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(56, 38, 25, 0.08);
}

.menu-group-title {
  margin-bottom: 1rem;
}

.menu-section-items {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px dashed rgba(74, 49, 28, 0.12);
}

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

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

.menu-item-name,
.menu-item-price {
  font-size: 1.68rem;
  line-height: 1.5;
}

.menu-empty-state {
  color: rgba(36, 24, 19, 0.68);
  text-align: center;
}

.menu-footnote {
  display: grid;
  justify-items: center;
  gap: 1.6rem;
  margin-top: 3.6rem;
  text-align: center;
}

.menu-footnote-copy {
  max-width: 80rem;
  color: rgba(36, 24, 19, 0.72);
}

.craft-section {
  min-height: 48rem;
  overflow: hidden;
}

.craft-background,
.craft-overlay {
  position: absolute;
  inset: 0;
}

.craft-background {
  background-size: cover;
  background-position: center 42%;
  filter: brightness(0.38) saturate(0.98);
}

.craft-overlay {
  background: linear-gradient(90deg, rgba(11, 8, 6, 0.84) 0%, rgba(11, 8, 6, 0.48) 54%, rgba(11, 8, 6, 0.78) 100%);
}

.craft-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 48rem;
}

.craft-copy {
  max-width: 78rem;
}

.craft-quote {
  margin-top: 1.4rem;
  color: #fff6ee;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 4.6vw, 5.4rem);
  line-height: 1.08;
  text-shadow: 0 1.2rem 4rem rgba(0, 0, 0, 0.42);
  text-wrap: balance;
}

.atmosphere-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(2rem, 3vw, 3.6rem);
  align-items: center;
}

.atmosphere-copy .btn {
  margin-top: 3rem;
}

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

.gallery-card {
  min-height: 30rem;
  border-radius: 2.4rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gallery-card-large {
  grid-row: span 2;
  min-height: 54rem;
}

.reservation-shell {
  display: grid;
  gap: 2.8rem;
}

.reservation-subcopy {
  max-width: 68rem;
  margin: 1.2rem auto 0;
  text-align: center;
}

.reservation-section .section-kicker {
  font-size: clamp(3.2rem, 3.8vw, 5rem);
}

.reservation-section .reservation-subcopy {
  max-width: 82rem;
  font-size: 1.86rem;
  line-height: 1.8;
  color: rgba(248, 241, 230, 0.9);
}

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

.reservation-card {
  padding: 2.8rem 2.4rem;
}

.reservation-actions,
.contacts-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.reservation-actions .btn {
  min-width: 21rem;
}

.contacts-shell {
  display: grid;
  gap: 4rem;
}

.contacts-copy {
  max-width: 74rem;
}

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

.contact-card {
  padding: 2.8rem 2.4rem;
}

.contact-link {
  margin-top: 1.4rem;
  color: #fff5ec;
  font-size: 2.4rem;
  font-weight: 700;
}

.contact-multiline,
.footer-hours {
  white-space: pre-line;
}

.site-footer {
  padding: 3.8rem 0 2.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, #110c09 0%, #090705 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2.4rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.footer-brand-logo {
  width: auto;
  max-width: 60rem;
  max-height: 18.75rem;
  filter: drop-shadow(0 1.2rem 3rem rgba(0, 0, 0, 0.38));
}

.footer-brand-copy {
  display: grid;
  gap: 0.7rem;
}

.footer-name {
  color: #fff4ea;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 3vw, 4.6rem);
  line-height: 0.95;
}

.footer-phone {
  color: #ffd4a0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer-address,
.footer-hours,
.footer-legal p {
  color: rgba(248, 241, 230, 0.7);
  font-size: 1.45rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.8rem;
  padding: 0 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.6rem;
  color: rgba(255, 245, 236, 0.86);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform var(--transition), border-color var(--transition), background-color var(--transition);
}

.footer-link:hover {
  border-color: rgba(222, 116, 43, 0.4);
  background: rgba(222, 116, 43, 0.08);
}

.footer-legal {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-legal p {
  white-space: pre-line;
}

.footer-credit {
  margin-top: 0.9rem;
}

.footer-credit a {
  color: rgba(255, 212, 160, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(222, 116, 43, 0.34);
  text-underline-offset: 0.28rem;
}

.footer-credit a:hover {
  color: #fff2e2;
  text-decoration-color: rgba(222, 116, 43, 0.58);
}

.footer-policy-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 1.2rem;
}

.footer-policy-links a {
  color: rgba(255, 212, 160, 0.92);
  font-size: 1.42rem;
  line-height: 1.6;
}

.consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 1.6rem 0;
  background: rgba(10, 8, 7, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 245, 236, 0.88);
}

.consent-banner__inner {
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 2rem;
  align-items: center;
}

.consent-banner__copy strong {
  display: block;
  margin-bottom: 0.6rem;
  color: #fff4ea;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consent-banner__copy p {
  color: rgba(255, 245, 236, 0.74);
  font-size: 1.4rem;
  line-height: 1.65;
}

.consent-banner__actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.consent-banner__link,
.consent-banner__button {
  min-height: 4.4rem;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.consent-banner__link {
  color: rgba(255, 245, 236, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.consent-banner__button {
  background: linear-gradient(135deg, #c95d22, #ec8c41);
  color: #fff7ef;
  border: 1px solid transparent;
}

.policy-page-body {
  min-height: 100vh;
  overflow-y: auto;
  background:
    radial-gradient(circle at top left, rgba(176, 84, 30, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(117, 65, 29, 0.16), transparent 30%),
    linear-gradient(180deg, #16100d 0%, #0d0907 100%);
}

.policy-page {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.policy-back-link {
  display: inline-flex;
  margin-bottom: 2rem;
  color: #ffd4a0;
  font-weight: 600;
}

.policy-card {
  padding: 3.2rem;
  background: rgba(20, 15, 12, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2.4rem;
  box-shadow: 0 1.8rem 4.4rem rgba(0, 0, 0, 0.24);
}

.policy-card h1 {
  margin-bottom: 1.6rem;
  color: #fff4ea;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  line-height: 1.08;
}

.policy-card h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
  color: #ffd4a0;
  font-size: 2rem;
}

.policy-card p {
  color: rgba(248, 241, 230, 0.82);
  font-size: 1.62rem;
  line-height: 1.72;
}

.back-top-btn {
  position: fixed;
  z-index: 18;
}

.back-top-btn {
  right: 2rem;
  bottom: 2rem;
  display: grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #cf6525, #e78740);
  color: var(--text);
  box-shadow: 0 1.4rem 3rem rgba(142, 67, 20, 0.34);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.back-top-btn.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 1260px) {
  .nav-shell {
    min-height: 7.2rem;
    justify-content: flex-end;
    width: min(100% - 4rem, 92rem);
    padding: 1.1rem 1.6rem;
  }

  .desktop-nav {
    display: none;
  }

  .nav-utility {
    position: static;
    transform: none;
    margin-left: auto;
  }

  .nav-toggle {
    display: grid;
    order: 3;
  }

  .mobile-nav {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 32;
    width: min(86vw, 36rem);
    transform: translateX(-100%);
    transition: transform 280ms ease;
  }

  .mobile-nav.active {
    display: block;
    transform: translateX(0);
  }

  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    height: 100%;
    padding: 2.2rem;
    background: #110c09;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-language-switcher {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 0.8rem;
  }

  .mobile-nav-panel a {
    font-size: 1.85rem;
    letter-spacing: 0.12em;
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.6rem;
  }

  .mobile-brand-logo {
    width: auto;
    max-width: 22rem;
    max-height: 6.8rem;
  }

  .mobile-close {
    color: var(--text);
    font-size: 3.4rem;
    line-height: 1;
  }

  .mobile-nav-pill {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 5.4rem;
    border-radius: 1.6rem;
    background: rgba(222, 116, 43, 0.14);
    border: 1px solid rgba(222, 116, 43, 0.32);
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 31;
    background: rgba(0, 0, 0, 0.62);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
  }

  .mobile-overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .hero-content,
  .atmosphere-shell,
  .contacts-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-top: 13rem;
    min-height: 80vh;
  }

  .service-cta-card {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1.2rem;
  }

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

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 2.8rem, var(--container));
  }

  .nav-shell {
    width: min(100% - 2.8rem, 92rem);
    padding: 1rem 1.2rem;
    min-height: 6.8rem;
  }

  .hero-brand-logo {
    max-width: 27rem;
    max-height: 10.4rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 5, 4, 0.74) 0%, rgba(8, 6, 5, 0.38) 28%, rgba(8, 6, 5, 0.84) 100%),
      linear-gradient(90deg, rgba(8, 6, 5, 0.84) 0%, rgba(8, 6, 5, 0.52) 55%, rgba(8, 6, 5, 0.72) 100%);
  }

  .hero-copy h1 {
    font-size: clamp(4.6rem, 9vw, 6.6rem);
    white-space: normal;
  }

  .hero-copy .bound-line-break {
    display: block;
  }

  .hero-copy .bound-line-break::before {
    content: "";
  }

  .hero-subtitle {
    font-size: 1.72rem;
    max-width: 50rem;
  }

  .service-cta-copy p {
    font-size: 1.5rem;
  }

  .editorial-copy p {
    font-size: 1.62rem;
    line-height: 1.72;
  }

  .reservation-section .reservation-subcopy {
    max-width: 72rem;
    font-size: 1.72rem;
  }

  .editorial-grid,
  .contacts-grid,
  .reservation-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid {
    gap: 1.6rem;
  }

  .gallery-card {
    min-height: 24rem;
  }
}

@media (max-width: 767px) {
  .hero-header {
    min-height: auto;
  }

  .hero-brand {
    top: 0.8rem;
    left: 1.4rem;
  }

  .top-nav {
    padding-top: 0.8rem;
  }

  .nav-shell {
    border-radius: 1.8rem;
    min-height: 6.2rem;
    padding-right: 1.2rem;
  }

  .top-nav .hero-language-switcher {
    display: none;
  }

  .hero-content {
    min-height: auto;
    padding-top: 11.2rem;
    padding-bottom: 5.4rem;
  }

  .hero-service-cta {
    max-width: 100%;
  }

  .hero-cta-band {
    margin-top: 0;
    padding-top: 0.8rem;
    padding-bottom: 3.2rem;
  }

  .service-cta-card {
    padding: 1.6rem;
    border-radius: 2rem;
  }

  .service-cta-icon {
    display: none;
  }

  .service-cta-copy h2 {
    font-size: clamp(2.2rem, 7vw, 3rem);
  }

  .service-cta-copy p {
    font-size: 1.34rem;
  }

  .editorial-copy p {
    font-size: 1.54rem;
    line-height: 1.68;
  }

  .service-cta-btn {
    min-width: 0;
  }

  .section-title {
    font-size: clamp(3.8rem, 10vw, 5.4rem);
  }

  .editorial-section,
  .atmosphere-section,
  .reservation-section,
  .contacts-section {
    padding: 5.8rem 0;
  }

  .craft-section,
  .craft-inner {
    min-height: 38rem;
  }

  .craft-quote {
    font-size: clamp(3rem, 10vw, 4.2rem);
  }

  .reservation-section .section-kicker {
    font-size: clamp(2.6rem, 8vw, 3.8rem);
  }

  .reservation-section .reservation-subcopy {
    max-width: 100%;
    font-size: 1.58rem;
    line-height: 1.72;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .consent-banner__actions {
    justify-content: flex-start;
  }

  .policy-page.shell {
    width: min(100% - 2.4rem, 100%);
  }

  .policy-page {
    padding-top: 2.4rem;
    padding-bottom: 4rem;
  }

  .policy-back-link {
    margin-bottom: 1.6rem;
    font-size: 1.45rem;
  }

  .policy-card {
    padding: 2.4rem 1.8rem;
    border-radius: 2rem;
  }

  .policy-card h1 {
    margin-bottom: 1.4rem;
    font-size: clamp(3rem, 8.4vw, 4.2rem);
    line-height: 1.08;
  }

  .policy-card h2 {
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-size: 1.82rem;
    line-height: 1.28;
  }

  .policy-card p {
    font-size: 1.55rem;
    line-height: 1.72;
  }
}

@media (max-width: 560px) {
  .hero-brand-logo {
    max-width: 21rem;
    max-height: 8rem;
  }

  .lang-btn {
    min-width: 3.8rem;
    min-height: 4rem;
    padding: 0 0.9rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.8rem, 12vw, 5rem);
  }

  .reservation-actions,
  .contacts-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .policy-page.shell {
    width: min(100% - 1.8rem, 100%);
  }

  .policy-page {
    padding-top: 1.8rem;
    padding-bottom: 3.2rem;
  }

  .policy-card {
    padding: 2rem 1.5rem;
    border-radius: 1.8rem;
  }

  .policy-card h1 {
    font-size: clamp(2.7rem, 8.6vw, 3.6rem);
  }

  .policy-card h2 {
    font-size: 1.72rem;
  }

  .policy-card p {
    font-size: 1.48rem;
    line-height: 1.68;
  }
}
