body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f5f4;
  color: #111827;
}

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

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

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(209, 213, 219, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem;
  gap: 1.5rem;
  position: relative;
}

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

.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  background: radial-gradient(circle at 30% 0%, #38bdf8, #1d4ed8);
  box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Oswald", "Inter", system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-city {
  font-size: 0.75rem;
  color: #6b7280;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: #4b5563;
  opacity: 0.9;
}

.main-nav a:hover {
  opacity: 1;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  cursor: pointer;
}

.mobile-nav-toggle::before {
  content: "☰";
  font-size: 1.1rem;
  line-height: 1;
}

.mobile-nav-toggle[aria-expanded="true"]::before {
  content: "✕";
}

.btn {
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.btn.primary {
  background: linear-gradient(135deg, #38bdf8, #1d4ed8);
  color: #111827;
  box-shadow: 0 18px 30px rgba(37, 99, 235, 0.25);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(209, 213, 219, 0.9);
  color: #374151;
}

.btn.wide {
  width: 100%;
  justify-content: center;
}

.hero {
  padding-block: 3.5rem 3rem;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(29, 78, 216, 0.12), transparent 55%);
}

.home-banner {
  position: relative;
  height: clamp(520px, 82vh, 820px);
  background: #0f172a;
  overflow: hidden;
}

.home-banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}

.home-banner-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.25rem 1rem 1.35rem;
  text-align: center;
  color: #f8fafc;
  background: radial-gradient(circle at 50% 18%, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.55) 72%),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.75));
}

.home-banner-logo {
  width: min(240px, 52vw);
  height: auto;
  display: block;
  transform: translateY(-24px);
  filter: drop-shadow(0 16px 28px rgba(15, 23, 42, 0.55));
}

.home-banner-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.1rem;
  display: grid;
  gap: 0.7rem;
  place-items: center;
  padding-inline: 1rem;
}

.home-banner-certs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-banner-certs img {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(15, 23, 42, 0.45));
}

.hero-slogan {
  text-align: center;
  margin: 0;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.85);
}

.hero-slogan .slogan-line {
  margin: 0.35rem 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.2;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.2vw, 2rem);
  font-family: "Oswald", "Inter", system-ui, -apple-system, Segoe UI, Roboto,
    Arial, sans-serif;
}

.hero-slogan .slogan-line:nth-child(2) {
  font-size: clamp(0.95rem, 1.7vw, 1.4rem);
  letter-spacing: 0.1em;
}

@media (prefers-reduced-motion: reduce) {
  .home-banner-video {
    display: none;
  }
  .home-banner {
    background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.7)),
      url("../assets/hero.jpg");
    background-size: cover;
    background-position: center;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #1d4ed8;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.15rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 0.9rem;
}

.hero-subtitle {
  max-width: 36rem;
  color: #4b5563;
  opacity: 1;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.hero-meta span::before {
  content: "•";
  margin-right: 0.4rem;
}

.info-blocks {
  margin: 1rem 0 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.info-blocks .highlight {
  padding: 0.7rem 0.9rem;
}

.hero-card {
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.hero-card-photo {
  height: 180px;
  background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.3)),
    url("../assets/imported/insolite/364b28eb580c.jpg");
  background-size: cover;
  background-position: center;
}

.hero-card-content {
  padding: 1.4rem 1.5rem 1.6rem;
}

.hero-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.hero-card li + li {
  margin-top: 0.25rem;
}

.hero-card-note {
  font-size: 0.8rem;
  color: #6b7280;
}

.section {
  padding-block: 3.25rem;
}

.soft-bg {
  background: #f9fafb;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 2.25rem;
  align-items: flex-start;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.section p {
  color: #4b5563;
  opacity: 1;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}

.about-highlights {
  display: grid;
  gap: 0.85rem;
}

.highlight {
  padding: 0.8rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
}

.highlight-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.15rem;
}

.highlight-value {
  font-size: 0.9rem;
}

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

.menu-column h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-column li + li {
  margin-top: 0.9rem;
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.95rem;
}

.menu-item-head .price {
  font-weight: 600;
  color: #1d4ed8;
}

.menu-column p {
  font-size: 0.85rem;
  color: #6b7280;
}

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

.review-card {
  padding: 1.2rem 1.1rem 1.3rem;
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.review-rating {
  color: #1d4ed8;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin: 0 0 0.6rem;
}

.page-banner {
  margin-top: 1.25rem;
  height: 260px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background-image: linear-gradient(to bottom, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.3)),
    var(--banner-image);
  background-size: cover;
  background-position: center;
}

.page-hero-subtitle {
  margin: 0;
  color: #4b5563;
  max-width: 70ch;
}

.page-hero-actions {
  margin: 1.1rem 0 0;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.menu-tools {
  margin-top: 1.1rem;
}

.menu-search {
  display: grid;
  gap: 0.35rem;
  max-width: 520px;
}

.menu-search-label {
  font-size: 0.8rem;
  color: #6b7280;
}

.menu-search input {
  border-radius: 999px;
  border: 1px solid rgba(209, 213, 219, 0.9);
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  outline: none;
}

.menu-section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  margin: 0 0 1rem;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.menu-list li {
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
}

.menu-desc {
  margin: 0.45rem 0 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.bullet-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
  color: #374151;
}

.bullet-list li + li {
  margin-top: 0.45rem;
}

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

.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gallery-item.portrait img {
  height: 420px;
  object-position: center top;
}

.review-card h3 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
}

.review-card p {
  font-size: 0.85rem;
  color: #4b5563;
}

.review-meta {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.4rem;
}

.form-row,
.form-grid {
  display: grid;
  gap: 0.8rem;
}

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

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

.form-section {
  border-radius: 1rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.9rem 1rem;
}

.form-section legend {
  padding: 0 0.35rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.field-label {
  font-size: 0.8rem;
  color: #374151;
}

.required {
  color: #991b1b;
}

label {
  font-size: 0.8rem;
  color: #374151;
}

input,
textarea {
  border-radius: 0.7rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  color: #111827;
  padding: 0.5rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
}

select {
  border-radius: 0.7rem;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
  color: #111827;
  padding: 0.55rem 0.7rem;
  font-family: inherit;
  font-size: 0.9rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(37, 99, 235, 0.25);
  outline-offset: 2px;
  border-color: rgba(37, 99, 235, 0.55);
}

textarea {
  resize: vertical;
}

.help {
  font-size: 0.75rem;
  color: #6b7280;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: #374151;
}

.form-consent input {
  margin-top: 0.2rem;
}

.form-actions {
  display: grid;
  gap: 0.5rem;
}

.form-note {
  font-size: 0.75rem;
  color: #6b7280;
}

.form-note a {
  color: #0f172a;
  text-decoration: underline;
  text-underline-offset: 0.14em;
  font-weight: 600;
}

.form-note a:hover {
  text-decoration-thickness: 2px;
}

.form-feedback {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-success {
  color: #065f46;
}

.form-feedback.is-error {
  color: #991b1b;
}

.contact-card {
  border-radius: 1rem;
  padding: 1.4rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(209, 213, 219, 0.9);
}

.event-details {
  margin-top: 1.25rem;
}

.event-details-title {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.event-details .contact-list {
  margin-bottom: 1rem;
}

.event-details-actions {
  margin: 0;
}

.event-details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 900px) {
  .event-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

.event-details-card .contact-list span + span {
  display: block;
  margin-top: 0.2rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.contact-list .label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  margin-bottom: 0.1rem;
}

.map-placeholder {
  border-radius: 0.8rem;
  border: 1px dashed rgba(156, 163, 175, 0.9);
  padding: 0.9rem 1rem;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #6b7280;
}

.map-placeholder span {
  font-size: 0.75rem;
}

.site-footer {
  border-top: 1px solid rgba(209, 213, 219, 0.9);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
  gap: 0.75rem;
}

@media (max-width: 900px) {
  .hero-inner,
  .two-columns,
  .menu-grid,
  .reviews-grid,
  .form-row,
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .main-nav {
    display: none;
  }

  .info-blocks {
    grid-template-columns: minmax(0, 1fr);
  }

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

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

  .header-inner {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 0.6rem;
  }

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

  .brand {
    justify-self: center;
  }

  .brand-text {
    display: none;
  }

  .site-header .btn.primary {
    justify-self: end;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .site-header .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 1px);
    padding: 0.9rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(209, 213, 219, 0.9);
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1rem;
    z-index: 30;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .site-header .main-nav a {
    padding: 0.35rem 0.2rem;
  }
}
