:root {
  /* Boutons : même forme arrondie (pilule / cercle pour les carrés) */
  --radius-btn-pill: 999px;

  /* Charte : noir, beige, terracotta (accent chaleureux) */
  --black: #0a0a0a;
  --beige-50: #fdfbf7;
  --beige-100: #f5f0e6;
  --beige-200: #ebe4d6;
  --beige-300: #ddd4c4;
  --terracotta: #a65947;
  --terracotta-dark: #874538;

  --text: #ffffff;
  --site-header-h: 88px;
  /* Hauteur bandeau avant scroll (+20 % sur le logo vs après scroll) */
  --site-header-h-expanded: 96px;
  --overlay: linear-gradient(
    180deg,
    rgba(38, 18, 14, 0.58) 0%,
    rgba(32, 16, 12, 0.4) 45%,
    rgba(14, 6, 5, 0.82) 100%
  );
}

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

html {
  scroll-padding-top: calc(var(--site-header-h-expanded) + 8px);
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--beige-100);
}

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

a:hover {
  opacity: 0.85;
}

/* Bandeau fixe : transparent au chargement, noir seulement après scroll */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: auto;
  min-height: var(--site-header-h-expanded);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.site-header.is-scrolled {
  min-height: var(--site-header-h);
  height: var(--site-header-h);
  background: var(--black);
  border-bottom-color: rgba(245, 240, 230, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.nav-main a {
  white-space: nowrap;
}

/* Liens lisibles sur la photo du hero (avant scroll) */
.site-header:not(.is-scrolled) .nav-main a {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85), 0 0 12px rgba(0, 0, 0, 0.45);
}

.logo-wrap {
  justify-self: center;
  text-align: center;
}

.logo-wrap img {
  display: block;
  margin: 0 auto;
  max-height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.65));
  transition: filter 0.28s ease;
}

/* Logo du haut : +20 % seulement avant scroll (accueil + menu) */
.site-header:not(.is-scrolled) .logo-wrap img {
  max-height: calc(52px * 1.2);
}

/* Accueil : logo2 par défaut, logo.png sur le bandeau noir (comme la page menu) */
.page-home .logo-wrap__home-scrolled {
  display: none;
}

.page-home .site-header.is-scrolled .logo-wrap__home-top {
  display: none;
}

.page-home .site-header.is-scrolled .logo-wrap__home-scrolled {
  display: block;
}

/* Logo en blanc sur le bandeau noir après scroll (logo foncé) */
.site-header.is-scrolled .logo-wrap img {
  max-height: 52px;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.site-header__end {
  justify-self: end;
  align-self: center;
  min-width: 0;
}

/* Accueil : Réserver masqué avec le header transparent, visible avec le bandeau noir */
.page-home .site-header__end {
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.page-home .site-header:not(.is-scrolled) .site-header__end {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-home .site-header.is-scrolled .site-header__end {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.btn-header-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black);
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: var(--radius-btn-pill);
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
}

.btn-header-reserve:hover {
  background: #faf8f4;
  color: var(--terracotta-dark);
  border-color: rgba(166, 89, 71, 0.35);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.site-header:not(.is-scrolled) .btn-header-reserve {
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.22);
}

.btn-header-reserve:focus-visible {
  outline: 2px solid var(--terracotta-dark);
  outline-offset: 3px;
}

.site-header.is-scrolled .btn-header-reserve:focus-visible {
  outline-color: var(--terracotta);
  outline-offset: 2px;
}

/* Hero sous le header transparent : pas de bande noire au-dessus au chargement */
.main-content {
  padding-top: 0;
}

.hero {
  position: relative;
  height: clamp(340px, 62vh, 620px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay);
}

.hero__bottom {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.25rem 1.5rem 2rem;
  text-align: center;
}

.tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}

.btn-ghost {
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-btn-pill);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

button.btn-ghost {
  appearance: none;
  -webkit-appearance: none;
}

.btn-ghost:hover {
  background: rgba(166, 89, 71, 0.4);
  border-color: rgba(245, 240, 230, 0.95);
  opacity: 1;
}

/* Même style « fantôme » sur fond clair (lisibilité) */
.intro-strip .btn-ghost {
  border-color: var(--terracotta);
  color: var(--terracotta-dark);
}

.intro-strip .btn-ghost:hover {
  background: rgba(166, 89, 71, 0.15);
  border-color: var(--terracotta-dark);
  color: var(--terracotta-dark);
}

.intro-strip__cta {
  margin-top: 1.5rem;
  text-align: left;
}

/* Bloc La Famille : texte à gauche, visuel à droite */
.intro-strip {
  background: var(--beige-200);
  color: var(--black);
  padding: 0;
  border-top: 1px solid var(--beige-300);
}

.intro-strip__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
}

.intro-strip__copy {
  max-width: 28rem;
  justify-self: start;
  margin-left: clamp(0.65rem, 2.5vw, 1.75rem);
  text-align: left;
}

/* Typo alignée sur le bloc Privatisation */
.intro-strip__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  color: var(--terracotta);
  letter-spacing: 0.06em;
  text-align: left;
}

.intro-strip__pitch {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.88);
  margin: 0 0 1rem;
  text-align: left;
}

.intro-strip__visual {
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
}

/* Carré photo : rempli par l’image (cover), fini discret — plus de « passe-partout » visible */
.intro-strip__frame {
  width: 100%;
  max-width: 400px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 28px rgba(10, 10, 10, 0.11);
  box-sizing: border-box;
}

.intro-strip__figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  background: var(--beige-300);
}

.intro-strip__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* Second bloc La Famille : photo à gauche, texte à droite, fond blanc */
.intro-strip--reverse {
  background: #fff;
  border-top: none;
}

.intro-strip--reverse .intro-strip__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.intro-strip--reverse .intro-strip__visual {
  order: 1;
}

.intro-strip--reverse .intro-strip__copy {
  order: 2;
  margin-left: 0;
  margin-right: clamp(0.65rem, 2.5vw, 1.75rem);
  justify-self: start;
}

/* Galerie type carrousel : centre mis en avant, côtés estompés */
.photo-strip {
  --photo-gap: 14px;
  margin: 0;
  padding: 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.photo-strip__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.75rem) 0 clamp(2rem, 4vw, 3rem);
}

.photo-strip__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin: 0 0 0.75rem;
}

.photo-strip__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border: none;
  background: transparent;
  color: #0a0a0a;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.photo-strip__arrow:hover {
  opacity: 0.65;
}

.photo-strip__arrow:focus-visible {
  outline: 2px solid var(--terracotta-dark);
  outline-offset: 4px;
}

.photo-strip__arrow-icon {
  font-size: 0.7rem;
  display: block;
}

.photo-strip__viewport {
  width: 100%;
  overflow: hidden;
  padding: 0 clamp(0.5rem, 2vw, 1rem);
  box-sizing: border-box;
}

.photo-strip__track {
  --photo-gap: 14px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: var(--photo-gap);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 1rem;
  width: max-content;
  will-change: transform;
}

.photo-strip__slide {
  position: relative;
  flex: 0 0 150px;
  width: 150px;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  /* Pas de transition sur la largeur : évite le conflit avec le translate du track (saut / « rétrécissement ») */
}

.photo-strip__slide.is-active {
  flex: 0 0 min(260px, 28vw);
  width: min(260px, 28vw);
  z-index: 2;
  cursor: default;
}

.photo-strip__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.48);
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.photo-strip__slide.is-active::after {
  opacity: 0;
}

.photo-strip__figure {
  margin: 0;
  width: 100%;
  height: 100%;
}

.photo-strip__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 600px) {
  .photo-strip__slide {
    flex: 0 0 120px;
    width: 120px;
  }

  .photo-strip__slide.is-active {
    flex: 0 0 min(200px, 52vw);
    width: min(200px, 52vw);
  }
}

/* Avis clients */
.reviews {
  background: var(--beige-100);
  color: var(--black);
  border-top: 1px solid var(--beige-300);
  padding: clamp(2.6rem, 6vw, 3.75rem) 1.5rem;
}

.reviews__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.reviews__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 0.75rem;
  text-align: center;
}

.reviews__kicker {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  margin: 0 0 1.25rem;
  text-align: center;
}

.reviews__score {
  margin: 0;
  width: 100%;
  text-align: center;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--black);
}

.reviews__google-link {
  display: inline-block;
  line-height: 0;
  border-radius: 4px;
  outline: none;
}

.reviews__google-link:focus-visible {
  outline: 2px solid var(--terracotta-dark);
  outline-offset: 3px;
}

.reviews__google-logo {
  display: block;
  height: clamp(1.75rem, 4vw, 2.25rem);
  width: auto;
  max-width: 140px;
  margin: 0 auto;
  object-fit: contain;
}

.reviews__carousel {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding-inline: 2.5rem;
  box-sizing: border-box;
}

.reviews__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  background: #d4d4d4;
  color: #555555;
  cursor: pointer;
  box-shadow: none;
  transition: background 0.18s ease, transform 0.18s ease, opacity 0.2s ease;
}

.reviews__arrow--prev {
  left: 0.25rem;
}

.reviews__arrow--next {
  right: 0.25rem;
}

.reviews__arrow:hover:not(:disabled) {
  background: #c8c8c8;
  transform: translateY(-50%) scale(1.03);
}

.reviews__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reviews__arrow-icon {
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 300;
  margin-top: -0.12em;
}

.reviews__viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 18px;
}

.reviews__slides {
  --slide-count: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: calc(var(--slide-count) * 100%);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

.reviews__slide {
  flex: 0 0 calc(100% / var(--slide-count));
  min-width: 0;
  box-sizing: border-box;
}

.reviews__slide-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
}

.reviews__source {
  display: none;
}

.review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.review-card__link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.15rem 1.25rem 1.25rem;
  min-height: 0;
  flex: 1;
  color: inherit;
  text-decoration: none;
  border-radius: inherit;
  outline: none;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.review-card__link:hover {
  opacity: 0.92;
}

.review-card__link:focus-visible {
  outline: 2px solid var(--terracotta-dark);
  outline-offset: 2px;
}

.review-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 0.5rem;
  flex-shrink: 0;
}

.review-card__name {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
}

.review-card__date {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.45);
  white-space: nowrap;
}

.review-card__stars {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  flex-shrink: 0;
}

.review-card__comment {
  margin: 0;
  padding: 0;
  border: none;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.review-card__comment p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(0.82rem, 1.35vw, 0.95rem);
  line-height: 1.4;
  color: rgba(10, 10, 10, 0.82);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 480px) {
  .reviews__carousel {
    gap: 0.35rem;
  }

  .reviews__arrow {
    width: 2.35rem;
    height: 2.35rem;
  }

  .reviews__arrow-icon {
    font-size: 1.5rem;
  }

  .review-card__link {
    padding: 0.55rem 0.6rem 0.6rem;
  }
}

/* Bloc privatisation */
.privatisation {
  background: #000;
}

.privatisation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: min(520px, 70vh);
  max-width: 1400px;
  margin: 0 auto;
}

.privatisation__content {
  background: transparent;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.privatisation__heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1.5rem;
}

.privatisation__body {
  max-width: 28rem;
  margin: 0 0 2rem;
}

.privatisation__body p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem;
}

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

/* Même style « fantôme » que « Réservez votre table » (hero) : fond transparent, bordure claire */
.privatisation__btn {
  text-decoration: none;
  margin-top: 0.25rem;
}

.privatisation__btn:hover {
  opacity: 1;
}

/* Colonne droite : photo encadrée sur fond noir (aligné avec la colonne texte) */
.privatisation__visual {
  position: relative;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  min-height: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.privatisation__figure {
  margin: 0;
  width: 100%;
  max-width: 640px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.5);
}

.privatisation__figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Pied de page */
.site-footer {
  background: var(--beige-100);
  color: rgba(10, 10, 10, 0.88);
  padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem 2.5rem;
  max-width: 1120px;
  margin: 0 auto 2rem;
}

.site-footer__brand {
  max-width: 260px;
}

.site-footer__logo-link {
  display: inline-block;
}

.site-footer__logo-link img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.9;
}

.site-footer__tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  margin: 0.75rem 0 0.25rem;
  color: rgba(10, 10, 10, 0.88);
}

.site-footer__baseline {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(10, 10, 10, 0.6);
}

.site-footer__heading {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--terracotta-dark);
  margin: 0 0 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer__address {
  font-style: normal;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0 0 0.65rem;
  color: rgba(10, 10, 10, 0.8);
}

.site-footer__link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__link:hover {
  color: var(--terracotta);
  opacity: 1;
}

.site-footer__note {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: rgba(10, 10, 10, 0.7);
}

.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(10, 10, 10, 0.8);
}

.site-footer__list li {
  margin-bottom: 0.35rem;
}

.site-footer__list--contact a {
  color: rgba(10, 10, 10, 0.9);
  font-weight: 500;
}

.site-footer__list--contact a:hover {
  color: var(--terracotta);
  opacity: 1;
}

.site-footer__hint {
  display: inline-block;
  margin-left: 0.25rem;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(245, 240, 230, 0.5);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.25rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(10, 10, 10, 0.82);
  border-radius: 50%;
  border: 1px solid rgba(10, 10, 10, 0.12);
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.site-footer__social-link:hover {
  color: var(--terracotta-dark);
  border-color: rgba(166, 89, 71, 0.45);
  background: rgba(166, 89, 71, 0.06);
  transform: translateY(-1px);
}

.site-footer__social-icon {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
}

.site-footer__bottom {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 0.5rem;
  text-align: center;
}

.site-footer__copy {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  color: rgba(245, 240, 230, 0.45);
}

.site-footer__legal {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(245, 240, 230, 0.38);
  max-width: 36rem;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .intro-strip__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .intro-strip__copy {
    max-width: none;
    margin-left: 0;
    padding-inline: 0.5rem;
  }

  .intro-strip--reverse .intro-strip__visual {
    order: -1;
  }

  .intro-strip--reverse .intro-strip__copy {
    order: 1;
    margin-right: 0;
    justify-self: stretch;
  }

  :root {
    --site-header-h: 112px;
    --site-header-h-expanded: 128px;
  }

  .site-header {
    height: auto;
    min-height: var(--site-header-h-expanded);
    padding: 0.65rem 0;
  }

  .site-header__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 0.5rem;
  }

  .logo-wrap {
    order: -1;
  }

  .logo-wrap img {
    max-height: 44px;
  }

  .site-header:not(.is-scrolled) .logo-wrap img {
    max-height: calc(44px * 1.2);
  }

  .nav-main {
    justify-content: center;
    font-size: 0.6rem;
    gap: 0.4rem 0.75rem;
    max-width: 100%;
  }

  .site-header__end {
    position: absolute;
    top: 0.55rem;
    right: 1rem;
    justify-self: unset;
  }

  .btn-header-reserve {
    padding: 0.42rem 0.75rem;
    font-size: 0.58rem;
  }

  .privatisation__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .privatisation__visual {
    order: -1;
    min-height: 52vw;
    max-height: 420px;
  }

  .privatisation__figure {
    position: absolute;
    inset: 0;
  }
}
