:root {
  --niagara-bg: #f6efe5;
  --niagara-surface: #fffaf3;
  --niagara-ink: #1f1c18;
  --niagara-muted: #645b51;
  --niagara-gold: #b88a46;
  --niagara-gold-deep: #8e672f;
  --niagara-line: rgba(31, 28, 24, 0.12);
  --niagara-shadow: 0 18px 40px rgba(31, 28, 24, 0.12);
  --niagara-radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.niagara-body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--niagara-ink);
  background:
    radial-gradient(circle at top left, rgba(184, 138, 70, 0.18), transparent 28%),
    linear-gradient(180deg, #fbf7f1 0%, #f4ebdf 100%);
  padding-bottom: calc(168px + env(safe-area-inset-bottom, 0px));
}


.services-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centrer les bulles */
  gap: 20px;
}

.services-row .service-item {
  flex: 0 1 calc(20% - 16px); /* garder 5 par ligne max */
  max-width: calc(20% - 16px);
  box-sizing: border-box;
}
.niagara-shell {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
}

.niagara-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(22, 19, 16, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.niagara-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 74px;
}

.niagara-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}

.niagara-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.niagara-brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.niagara-brand-title {
  font-family: "Spectral", serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
}

.niagara-brand-subtitle {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.niagara-menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: #fff;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
}

.niagara-nav-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 74px;
  display: none;
  background: rgba(22, 19, 16, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.niagara-nav-wrap.is-open {
  display: block;
}

.niagara-nav {
  display: grid;
  gap: 6px;
  padding: 14px 0 18px;
}

.niagara-nav a,
.niagara-lang a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.niagara-nav a {
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 500;
}

.niagara-nav a.is-active,
.niagara-nav a:hover,
.niagara-lang a.is-active,
.niagara-lang a:hover {
  color: #fff;
  background: rgba(184, 138, 70, 0.18);
}

.niagara-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.niagara-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 32px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.niagara-hero,
.niagara-page-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.niagara-hero::before,
.niagara-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(15, 13, 11, 0.88), rgba(15, 13, 11, 0.54)),
    radial-gradient(circle at top left, rgba(184, 138, 70, 0.4), transparent 32%);
}

.niagara-hero .niagara-shell,
.niagara-page-hero .niagara-shell {
  position: relative;
  z-index: 1;
}

.niagara-hero {
  background: url("../img/banner.jpg") center/cover;
}

.niagara-page-hero {
  background: url("../img/restaurant.jpg") center/cover;
}

.niagara-hero-grid,
.niagara-split {
  display: grid;
  gap: 20px;
}

.niagara-hero-grid {
  padding: 62px 0 42px;
}

.niagara-eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5dcb3;
}

.niagara-title {
  margin: 0;
  font-family: "Spectral", serif;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.96;
}

.niagara-lead,
.niagara-copy {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.86);
}

.niagara-copy-dark {
  color: var(--niagara-muted);
}

.niagara-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.niagara-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease;
}

.niagara-btn:hover {
  transform: translateY(-1px);
}

.niagara-btn-primary {
  background: var(--niagara-gold);
  color: #161310;
}

.niagara-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.niagara-btn-surface {
  background: #fff;
  color: var(--niagara-ink);
  border: 1px solid var(--niagara-line);
}

.niagara-stat-card,
.niagara-card,
.niagara-panel,
.niagara-gallery img,
.niagara-pdf-panel {
  border-radius: var(--niagara-radius);
  box-shadow: var(--niagara-shadow);
}

.niagara-stat-card {
  padding: 22px;
  background: rgba(255, 250, 243, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.niagara-stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.niagara-section {
  padding: 28px 0;
}

.niagara-section-head {
  margin-bottom: 18px;
}

.niagara-section-head h2 {
  margin: 0 0 8px;
  font-family: "Spectral", serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.niagara-grid {
  display: grid;
  gap: 16px;
}

.niagara-card,
.niagara-panel,
.niagara-pdf-panel {
  background: var(--niagara-surface);
  border: 1px solid rgba(31, 28, 24, 0.08);
}

.niagara-card {
  padding: 18px;
}

.niagara-card figure {
  margin: 0 0 14px;
}

.niagara-card img,
.niagara-split-media img,
.niagara-gallery img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.niagara-card img,
.niagara-split-media img {
  border-radius: 18px;
  aspect-ratio: 4 / 3;
}

.niagara-card h3,
.niagara-panel h3 {
  margin: 0 0 10px;
  font-family: "Spectral", serif;
}

.niagara-split {
  align-items: center;
}

.niagara-panel {
  padding: 22px;
}

.niagara-meta {
  display: grid;
  gap: 12px;
}

.niagara-meta-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--niagara-line);
}

.niagara-meta-item span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--niagara-gold-deep);
}

.niagara-gallery {
  display: grid;
  gap: 12px;
}

.niagara-gallery img {
  aspect-ratio: 1 / 1;
}

.niagara-cta-band {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(22, 19, 16, 0.94), rgba(22, 19, 16, 0.72)),
    url("../img/privatisation.jpg") center/cover;
  color: #fff;
}

.niagara-list {
  margin: 0;
  padding-left: 18px;
  color: var(--niagara-muted);
}

.niagara-pdf-panel {
  overflow: hidden;
}

.niagara-pdf-frame {
  width: 100%;
  min-height: 72vh;
  border: 0;
  background: #fff;
}

.niagara-footer {
  padding: 26px 0 94px;
  color: var(--niagara-muted);
}

.niagara-footer-grid {
  display: grid;
  gap: 16px;
}

.niagara-footer-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--niagara-line);
}

.niagara-footer-card h4 {
  margin: 0 0 8px;
  font-family: "Spectral", serif;
  color: var(--niagara-ink);
}

.niagara-footer a {
  color: inherit;
}

.niagara-mobile-cta {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  z-index: 35;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(22, 19, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.niagara-mobile-cta a {
  min-height: 48px;
  padding: 0 10px;
  border-radius: 14px;
  font-size: 0.84rem;
  text-align: center;
  line-height: 1.15;
}

.niagara-page-hero {
  padding: 44px 0 26px;
}

.niagara-contact-grid {
  display: grid;
  gap: 16px;
}

.niagara-map {
  min-height: 340px;
  border: 0;
  width: 100%;
  border-radius: 18px;
}

.contact-actions-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-action-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #faf8f4;
  border: 1px solid #ece4d6;
  color: #121212;
  text-decoration: none;
}

.contact-action-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-action-card span {
  color: #7b746b;
  font-size: 0.93rem;
}

.contact-action-card img {
  width: 116px;
  max-width: 34%;
  height: auto;
  object-fit: contain;
}

.contact-action-card-social {
  background: #fff6f0;
}

.contact-action-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f07a62;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form-grid {
  display: grid;
  gap: 16px;
}

.contact-form-row {
  display: grid;
  gap: 16px;
}

.contact-form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #121212;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: 1px solid #ddd2c0;
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  color: #121212;
}

.contact-form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form-help {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: #7b746b;
}

.contact-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: #645b51;
}

.contact-form-consent input {
  margin-top: 3px;
}

.contact-captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #faf8f4;
  border: 1px solid #ece4d6;
}

.contact-captcha-box strong {
  display: block;
  margin-bottom: 4px;
}

.contact-captcha-box button {
  white-space: nowrap;
}

.contact-form-status {
  margin-top: 10px;
  font-size: 0.94rem;
  color: #645b51;
}

.niagara-note {
  font-size: 0.94rem;
  color: var(--niagara-muted);
}

@media (min-width: 840px) {
  body.niagara-body {
    padding-bottom: 0;
  }

  .niagara-menu-toggle {
    display: none;
  }

  .niagara-nav-wrap {
    position: static;
    display: block;
    background: transparent;
    border: 0;
  }

  .niagara-header-inner {
    gap: 18px;
  }

  .niagara-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 0;
  }

  .niagara-nav-area {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
  }

  .niagara-hero-grid,
  .niagara-split,
  .niagara-contact-grid,
  .niagara-footer-grid,
  .contact-form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .niagara-section {
    padding: 44px 0;
  }

  .niagara-footer {
    padding-bottom: 30px;
  }

  .niagara-mobile-cta {
    display: none;
  }
}

.niagara-body.victory-home {
  background: #fff;
}

.niagara-body.victory-subpage {
  background: #fff;
}

.victory-home .header {
  position: relative;
  background-color: #eaf0ff;
}

.victory-home .header .container {
  position: relative;
}

.victory-home .header .container,
.victory-subpage .header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 24px;
  flex-wrap: wrap;
}

.victory-home .navbar-brand,
.victory-subpage .navbar-brand {
  order: 1;
}

.victory-home .navbar,
.victory-subpage .navbar {
  order: 2;
  flex: 0 0 100%;
}

.victory-home .navbar-brand.brand-with-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
}

.victory-home .navbar-brand.brand-with-logo img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.victory-home .brand-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.victory-home .brand-copy strong {
  font-family: "Spectral", serif;
  font-size: 2rem;
  line-height: 1;
  color: #121212;
}

.victory-home .brand-copy span {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6a6a6a;
}

.victory-lang-switch {
  position: absolute;
  display: inline-flex;
  gap: 6px;
  z-index: 4;
  top: 18px;
  right: 15px;
}

.victory-lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #d8deed;
  color: #363e50;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.victory-lang-switch a.is-active {
  background: #f2745f;
  border-color: #f2745f;
  color: #fff;
}

.victory-home .navbar-brand {
  background-color: #eaf0ff;
  border-bottom-color: #d8deed;
  color: #121212;
  width: 100%;
  border-bottom: 1px solid #d8deed;
  padding: 34px 0 28px;
  margin-right: 0;
  flex: 0 0 100%;
}

.victory-home .navbar-nav li a {
  color: #121212 !important;
}

.victory-home .navbar-nav li a.is-current,
.victory-subpage .navbar-nav li a.is-current {
  color: #f2745f !important;
}

.victory-home .navbar-inverse,
.victory-home .header.active {
  background-color: #eaf0ff;
}

.victory-home .navbar,
.victory-subpage .navbar {
  margin: 0;
  border: 0;
  flex: 1 1 auto;
}

.victory-home #main-nav,
.victory-subpage #main-nav {
  float: none;
  left: auto;
  text-align: center;
  padding: 0;
}

.victory-home .nav,
.victory-subpage .nav {
  left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  float: none;
  width: 100%;
}

.victory-home .navbar-nav li,
.victory-subpage .navbar-nav li {
  float: none;
  margin: 0 10px;
}

.victory-home .navbar-collapse,
.victory-subpage .navbar-collapse {
  padding-left: 0;
  padding-right: 0;
}

.victory-brand-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.victory-brand-inline img {
  width: auto;
  max-width: min(320px, 78vw);
  height: 92px;
  object-fit: contain;
  flex: 0 0 auto;
}

.victory-brand-copy {
  display: none;
}

.victory-home .banner {
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.45), rgba(18, 18, 18, 0.45)),
    url("../img/banner.jpg");
  padding: 160px 0 132px;
}

.victory-home-banner {
  padding: 126px 0 92px;
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.5), rgba(18, 18, 18, 0.5)),
    url("../img/banner-bg.jpg");
}

.victory-home-banner .victory-banner-actions {
  margin-top: 28px;
}

.victory-home .banner h4,
.victory-home .banner h2,
.victory-home .banner p {
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.victory-home .banner p,
.victory-page-banner p {
  line-height: 1.7;
}

.victory-home .service-item {
  min-height: 330px;
}

.victory-home .services {
  padding-bottom: 56px;
}

.victory-home .services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.victory-home .services-grid::before,
.victory-home .services-grid::after {
  display: none;
}

.victory-home .services-grid > [class*="col-"] {
  float: none;
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.victory-home .services-grid .service-item {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}

.victory-home .services .heading {
  margin-bottom: 10px;
  text-align: center;
}

.victory-home .services .heading p {
  max-width: 760px;
  margin: 0 auto 16px;
  color: #6f665d;
  line-height: 1.7;
}

.victory-home .service-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 10px;
}

.victory-home .service-item .service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(184, 138, 70, 0.12);
  color: #8e672f;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.victory-home .service-item h4 {
  min-height: 0;
  margin-bottom: 10px;
}

.victory-home .service-item img {
  width: 176px;
  height: 176px;
  object-fit: cover;
  border-width: 14px;
  object-position: center;
}

.victory-home .service-item p {
  max-width: 250px;
  margin: 0 auto;
  color: #6f665d;
  font-size: 14px;
  line-height: 1.65;
}

.home-reviews-preview {
  padding: 34px 0 58px;
  background:
    radial-gradient(circle at top right, rgba(242, 116, 95, 0.14), transparent 28%),
    linear-gradient(180deg, #f6f0e7 0%, #efe7dc 100%);
}

.home-reviews-head {
  margin: 0 auto 30px;
  text-align: center;
}

.home-reviews-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(240, 122, 98, 0.14);
  color: #c45b45;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-reviews-head h2 {
  margin: 0 0 10px;
  color: #161310;
}

.home-reviews-head p {
  max-width: 760px;
  margin: 0 auto;
  color: #6f665d;
  line-height: 1.7;
}

.home-reviews-panel {
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 243, 0.96)),
    url("../img/banner-bg.jpg") center/cover;
  border: 1px solid rgba(226, 214, 200, 0.9);
  box-shadow: 0 28px 60px rgba(35, 27, 20, 0.08);
}

.home-reviews-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 6px 4px 20px;
}

.home-reviews-panel-head h3 {
  margin: 0 0 8px;
  color: #161310;
}

.home-reviews-panel-head p {
  margin: 0;
  color: #6a6259;
}

.home-reviews-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.home-stars {
  color: #f2a93b;
  letter-spacing: 0.18em;
  font-size: 0.94rem;
  font-weight: 700;
}

.home-reviews-mosaic .col-md-3,
.home-reviews-mosaic .col-sm-6 {
  margin-bottom: 16px;
}

.home-review-tile {
  min-height: 188px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #e6ddd1;
  box-shadow: 0 12px 28px rgba(35, 27, 20, 0.05);
}

.home-review-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.home-review-tile-top strong {
  color: #161310;
  font-size: 1rem;
}

.home-review-tile-top span {
  color: #7f776e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-review-tile p {
  margin: 10px 0 0;
  color: #474038;
  line-height: 1.62;
  font-size: 0.94rem;
}

.home-review-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: #161310;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.home-review-link::after {
  content: "\f105";
  margin-left: 10px;
  font-family: "FontAwesome";
  font-weight: 400;
}

.home-review-link-alt {
  background: #fff;
  color: #161310;
  border: 1px solid #ddd0c2;
}

.home-review-link-alt:hover,
.home-review-link-alt:focus {
  color: #161310;
}

.legal-copy {
  padding: 34px;
}

.legal-copy h2,
.legal-copy h3 {
  margin: 0 0 14px;
}

.legal-copy p {
  margin: 0 0 16px;
  color: #5f584f;
  line-height: 1.8;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

.home-review-link:hover,
.home-review-link:focus {
  color: #fff;
  text-decoration: none;
}

.victory-home .left-image img {
  width: 100%;
  display: block;
  height: 282px;
  object-fit: cover;
}

.victory-home .first-image img,
.victory-home .second-image img {
  display: block;
  width: 100%;
  height: 258px;
  object-fit: cover;
}

.victory-home .cook-delecious .cook-content {
  margin-top: 0;
  padding: 30px;
  color: #fff !important;
}

.victory-home .cook-delecious .cook-content h4 {
  margin-bottom: 20px;
  font-size: 22px;
  line-height: 1.35;
}

.victory-home .cook-delecious .cook-content p {
  margin: 0 0 14px;
  color: #fff !important;
  line-height: 1.75;
}

.victory-home .cook-delecious .cook-content,
.victory-home .cook-delecious .cook-content p,
.victory-home .cook-delecious .cook-content span,
.victory-home .cook-delecious .cook-content strong {
  color: #fff !important;
}

.victory-home .cook-delecious .cook-content p:last-child {
  margin-bottom: 0;
}

.victory-home .cook-delecious .contact-content {
  padding: 20px 30px;
}

.victory-home .cook-delecious .contact-content h6 {
  margin: 12px 0 0;
  font-size: 18px;
}

.victory-home .cook-delecious .primary-white-button a {
  padding: 12px 22px;
}

.victory-home .cook-delecious .first-image {
  margin-right: -30px;
  margin-top: 18%;
}

.victory-home .cook-delecious .second-image {
  margin-left: -30px;
  margin-top: 18%;
}

.victory-home .booking-actions {
  display: grid;
  gap: 12px;
}

.victory-home .booking-actions a {
  text-align: center;
}

.victory-home .mini-note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.6;
  color: #a7a7a7;
}

.victory-home .feature-strip {
  background: #f5f2ec;
  padding: 100px 0;
}

.victory-home .feature-card {
  background: #fff;
  padding: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.victory-home .feature-card img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.victory-home .feature-card h4 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #121212;
}

.victory-home .food-item {
  min-height: 100%;
}

.victory-home .featured-food {
  padding: 58px 0 64px;
}

.victory-home .featured-food .heading h2 {
  margin-bottom: 42px;
}

.victory-home .food-item img {
  height: 240px;
  object-fit: cover;
}

.simple-footer {
  padding: 0;
  background: #363e50;
  text-align: center;
}

.simple-footer .container {
  padding-top: 38px;
  padding-bottom: 38px;
}

.simple-footer p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 36px;
}

.simple-footer a {
  color: #fff;
  text-decoration: none;
}

.simple-footer a:hover,
.simple-footer a:focus {
  color: #f2745f;
  text-decoration: none;
}

.simple-footer .social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.simple-footer .social-icons li {
  display: inline-flex;
  margin: 0;
}

.simple-footer .social-icons li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #363e50;
  transition: all 0.3s ease;
}

.simple-footer .social-icons li a:hover,
.simple-footer .social-icons li a:focus {
  background: #f2745f;
  color: #fff;
}

.simple-footer .social-icons li i {
  font-size: 15px;
}

.simple-footer .social-icons.social-icons-links li a {
  font-weight: 600;
}

.victory-subpage .header {
  position: relative;
  background-color: #eaf0ff;
}

.victory-subpage .navbar-brand {
  background-color: #eaf0ff;
  border-bottom-color: #d8deed;
  color: #121212;
  width: 100%;
  border-bottom: 1px solid #d8deed;
  padding: 34px 0 28px;
  margin-right: 0;
  flex: 0 0 100%;
}

.victory-subpage .navbar-nav li a {
  color: #121212 !important;
}

.victory-subpage .navbar-inverse,
.victory-subpage .header.active {
  background-color: #eaf0ff;
}

.victory-home-blog {
  padding: 58px 0 54px;
  background: #eaf0ff;
}

.victory-home-blog .heading {
  margin-bottom: 28px;
}

.victory-home-blog .heading p {
  max-width: 760px;
  margin: 12px auto 0;
  text-align: center;
  color: #5f677b;
  line-height: 1.7;
}

.victory-home-blog .blog-item {
  margin-bottom: 30px;
  box-shadow: 0 18px 36px rgba(54, 62, 80, 0.08);
}

.victory-home-blog .blog-item img {
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.victory-home-blog .blog-item .date {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 112px;
  text-align: center;
}

.victory-page-banner {
  padding: 118px 0 92px;
  background-image:
    linear-gradient(rgba(18, 18, 18, 0.45), rgba(18, 18, 18, 0.45)),
    url("../img/banner-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
}

.victory-page-banner h4 {
  margin-top: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.victory-page-banner h2 {
  margin: 10px 0 14px;
  font-family: "Spectral", serif;
  font-size: 44px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.victory-page-banner p {
  color: #fff;
  font-size: 14px;
  max-width: 720px;
  margin: 0 auto;
}

.victory-page-banner-compact {
  padding: 82px 0 60px;
}

.victory-page-banner-menu {
  padding: 68px 0 44px;
}

.menu-shell {
  padding: 54px 0 82px;
  background: #fff;
}

.menu-intro {
  text-align: center;
  margin-bottom: 22px;
}

.menu-intro p {
  max-width: 760px;
  margin: 0 auto;
}

.menu-tabs-hint {
  display: none;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.menu-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  background: #fff;
  border-radius: 999px;
  color: #121212;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-weight: 600;
}

.menu-tabs a:hover,
.menu-tabs a:focus {
  background: #f0e6d6;
  outline: none;
}

.menu-tabs-hero {
  justify-content: center;
  margin: 16px auto 0;
  max-width: 960px;
}

.menu-tabs-hero a,
.menu-banner-link {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-tabs-hero a:hover,
.menu-tabs-hero a:focus,
.menu-banner-link:hover,
.menu-banner-link:focus {
  background: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.menu-tabs-hint-hero {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

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

.menu-block {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  scroll-margin-top: 110px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.menu-block-head {
  margin-bottom: 18px;
}

.menu-block-head h2 {
  margin: 0 0 4px;
  font-family: "Spectral", serif;
  font-size: 2rem;
  color: #121212;
}

.menu-block-head p {
  margin: 0;
  color: #8f8f8f;
}

.formula-grid {
  display: grid;
  gap: 16px;
}

.formula-card {
  background: #faf8f4;
  border: 1px solid #ece4d6;
  border-radius: 14px;
  padding: 18px;
}

.formula-title {
  margin: 0 0 8px;
  font-family: "Spectral", serif;
  font-size: 1.5rem;
  color: #121212;
}

.formula-description {
  margin: 0 0 14px;
}

.formula-prices {
  display: grid;
  gap: 10px;
}

.formula-price {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px dashed #d9ccb7;
}

.formula-price:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.formula-price strong,
.price {
  white-space: nowrap;
  color: #b88a46;
  font-weight: 700;
}

.formula-choices {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.formula-choice-group h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #121212;
}

.formula-choice-list {
  display: grid;
  gap: 8px;
}

.formula-choice-item strong {
  display: block;
  color: #121212;
}

.menu-card {
  display: grid;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed #ddd;
}

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

.menu-name {
  font-weight: 700;
  color: #121212;
}

.menu-desc {
  margin-top: 4px;
  font-size: 0.94rem;
  color: #777;
}

.table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 12px 10px;
  border-bottom: 1px dashed #ddd;
  vertical-align: top;
}

.price-table th {
  color: #121212;
}

.price-table td:not(:first-child),
.price-table th:not(:first-child) {
  text-align: right;
  white-space: nowrap;
}

.menu-note,
.empty-state {
  color: #8f8f8f;
}

.feature-card,
.feature-card-large,
.feature-card-compact {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.feature-card img,
.feature-card-large img,
.feature-card-compact img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card h4,
.feature-card-large h4,
.feature-card-compact h4 {
  margin: 0;
  padding: 18px 20px 6px;
  font-family: "Spectral", serif;
  font-size: 1.9rem;
  color: #121212;
}

.feature-card p,
.feature-card-compact p {
  margin: 0;
  padding: 0 20px 20px;
  color: #666;
}

.feature-card-large h4 {
  padding-bottom: 18px;
}

.victory-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.victory-banner-actions-left {
  justify-content: flex-start;
}

.menu-banner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  text-align: center;
}

.gallery-shell {
  padding-top: 36px;
}

.gallery-intro {
  padding: 28px;
}

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

.gallery-shot {
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gallery-shot::after {
  content: none;
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

html[lang="fr"] .gallery-shot::after {
  content: none;
}

.gallery-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.gallery-shot:hover img,
.gallery-shot:focus img {
  transform: scale(1.03);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(12, 12, 12, 0.88);
  cursor: zoom-out;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-figure {
  margin: 0;
  max-width: min(1100px, calc(100vw - 120px));
  max-height: calc(100vh - 80px);
}

.gallery-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.gallery-lightbox-figure figcaption {
  display: none;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}

.gallery-lightbox-close {
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 2rem;
  line-height: 1;
}

.gallery-lightbox-prev {
  left: 18px;
}

.gallery-lightbox-next {
  right: 18px;
}

@media (max-width: 767px) {
  .victory-home .header .container,
  .victory-subpage .header .container {
    display: block;
  }

  .victory-home .navbar-brand,
  .victory-subpage .navbar-brand {
    display: inline-flex;
    padding: 16px 0 12px;
    width: 100%;
    min-height: 92px;
  }

  .victory-brand-inline img {
    max-width: 186px;
    height: 58px;
  }

  .victory-lang-switch {
    position: absolute;
    right: 66px;
    top: 14px;
    gap: 4px;
  }

  .victory-lang-switch a {
    min-width: 34px;
    height: 30px;
    padding: 0 8px;
    font-size: 11px;
  }

  .victory-home .navbar,
  .victory-subpage .navbar {
    display: block;
  }

  .victory-home .navbar-toggle,
  .victory-subpage .navbar-toggle {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    width: 46px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #d8deed;
    box-shadow: 0 8px 20px rgba(54, 62, 80, 0.12);
  }

  .victory-home #main-nav,
  .victory-subpage #main-nav {
    padding: 8px 12px 14px;
    margin: 0 0 6px;
    background: transparent;
  }

  .victory-home .nav,
  .victory-subpage .nav {
    display: block;
    background: #fff;
    border: 1px solid #d8deed;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(54, 62, 80, 0.08);
  }

  .victory-home .navbar-nav li,
  .victory-subpage .navbar-nav li {
    margin: 0;
  }

  .victory-home .navbar-nav li a,
  .victory-subpage .navbar-nav li a {
    display: block;
    padding: 15px 18px;
    font-size: 15px;
    text-align: left;
  }

  .victory-home .banner {
    padding: 92px 0 72px;
  }

  .victory-home-banner {
    padding: 76px 0 54px;
  }

  .victory-home .banner h2 {
    font-size: 30px;
    line-height: 1.05;
  }

  .victory-home-banner h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .victory-home .banner p,
  .victory-page-banner p {
    font-size: 15px;
    line-height: 1.6;
  }

  .victory-home .cook-delecious .cook-content {
    margin-top: 0;
    padding: 24px 20px;
  }

  .victory-home .cook-delecious .first-image,
  .victory-home .cook-delecious .second-image {
    margin-right: 0;
    margin-left: 0;
    margin-top: 0;
  }

  .victory-home .service-item {
    min-height: auto;
  }

  .victory-home .service-item img {
    width: 150px;
    height: 150px;
    border-width: 12px;
  }

  .home-reviews-preview {
    padding: 34px 0 44px;
  }

  .home-reviews-panel {
    padding: 18px;
    border-radius: 20px;
  }

  .home-reviews-panel-head {
    flex-direction: column;
    padding-bottom: 12px;
  }

  .home-reviews-actions {
    width: 100%;
    justify-content: stretch;
  }

  .home-reviews-actions .home-review-link {
    width: 100%;
  }

  .home-review-tile {
    min-height: auto;
    padding: 16px;
  }

  .simple-footer .container {
    padding-top: 26px;
    padding-bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  }

  .simple-footer p {
    line-height: 1.8;
    margin-bottom: 12px;
  }

  .victory-page-banner {
    padding: 72px 0 48px;
  }

  .victory-page-banner-compact,
  .victory-page-banner-menu {
    padding: 48px 0 34px;
  }

  .victory-page-banner h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .menu-shell {
    padding: 32px 0 120px;
  }

  .menu-block,
  .gallery-intro {
    padding: 18px;
    border-radius: 16px;
  }

  .menu-block-head {
    margin-bottom: 14px;
  }

  .menu-block-head h2 {
    font-size: 1.5rem;
    line-height: 1.15;
  }

  .menu-block-head p,
  .menu-desc,
  .formula-description,
  .formula-choice-item span,
  .feature-card p,
  .feature-card-large p,
  .feature-card-compact p {
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .menu-tabs-hint {
    display: block;
    margin: -2px 0 10px;
    color: #8f8f8f;
    font-size: 0.9rem;
  }

  .menu-tabs {
    overflow: auto;
    flex-wrap: nowrap;
    padding: 0 18px 4px 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .menu-tabs a {
    white-space: nowrap;
    scroll-snap-align: start;
  }

  .menu-item,
  .formula-price {
    flex-direction: column;
    gap: 6px;
  }

  .menu-item {
    padding: 12px 0;
  }

  .price,
  .formula-price strong {
    font-size: 1rem;
  }

  .menu-tabs-hero {
    justify-content: flex-start;
    padding-bottom: 6px;
  }

  .victory-banner-actions,
  .victory-banner-actions-left {
    justify-content: stretch;
  }

  .victory-banner-actions .menu-banner-link,
  .victory-banner-actions-left .menu-banner-link {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery-shot::after {
    right: 8px;
    bottom: 8px;
    padding: 5px 8px;
    font-size: 10px;
  }

  .gallery-intro {
    padding: 22px;
  }

  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox-figure {
    max-width: calc(100vw - 32px);
  }

  .gallery-lightbox-figure img {
    max-height: calc(100vh - 120px);
  }

  .gallery-lightbox-nav {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .gallery-lightbox-prev {
    left: 14px;
  }

  .gallery-lightbox-next {
    right: 14px;
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
  }

  .contact-action-card {
    align-items: flex-start;
  }

  .contact-action-card img {
    width: 92px;
    max-width: 32%;
  }

  .contact-captcha-box {
    flex-direction: column;
    align-items: stretch;
  }

  .table-wrap {
    margin: 0 -6px;
    padding: 0 6px 6px 0;
    -webkit-overflow-scrolling: touch;
  }

  .price-table {
    min-width: 460px;
  }

  .price-table th,
  .price-table td {
    padding: 10px 8px;
    font-size: 0.92rem;
  }

  .price-table th:first-child,
  .price-table td:first-child {
    min-width: 190px;
    position: sticky;
    left: 0;
    background: #fff;
  }

  .niagara-mobile-cta {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px));
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border-radius: 18px;
  }

  .niagara-mobile-cta a {
    min-height: 46px;
    font-size: 0.8rem;
    padding: 0 8px;
    white-space: normal;
  }

}
