/* ── Polices ── */
@font-face {
  font-family: "Symphony Pro";
  src: url("typo/symphony-pro-regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Sanchez";
  src: url("typo/Sanchez-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Sanchez";
  src: url("typo/Sanchez-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background-color: #601d23;
  font-family: "Sanchez", serif;
  font-weight: normal;
  font-synthesis: none;
  color: #fff9ec;
}

/* ── Variables grille ── */
:root {
  --marge: 50px;
  --gutter: 20px;
  --col: calc((100vw - var(--marge) * 2 - var(--gutter) * 11) / 12);
}

/* ── Page Container ── */
.page {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.description a {
  color: #fff9ec;
  text-decoration: underline;
}

/* ── Icône maison ── */
.home-link {
  position: fixed;
  top: 50px;
  right: 50px;
  z-index: 10;
  transition: opacity 0.3s ease;
  text-decoration: none;
  opacity: 0.8;
}

.home-link:hover {
  opacity: 0.5;
}

.home-icon {
  height: 25px;
  display: block;
}

/* ── Photo droite (col 7 à 12, pleine hauteur) ── */
.photo-droite {
  position: absolute;
  top: 0px;
  right: 0;
  width: calc(var(--marge) + var(--col) * 5 + var(--gutter) * 4);
  height: 100vh;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
}

/* ── Texte bas gauche (col 1 à 5) ── */
.description {
  position: absolute;
  bottom: var(--marge);
  left: var(--marge);
  width: calc(var(--col) * 6 + var(--gutter) * 5);
  font-family: "Sanchez", serif;
  font-weight: normal;
  font-synthesis: none;
  font-size: 17px;
  line-height: 1.15;
  color: #fff9ec;
  text-align: left;
  z-index: 2;
}
