/* ─── Fonts ────────────────────────────────────────── */
@font-face {
  font-family: 'PP Right Serif';
  src: url('assets/fonts/PP Right Serif - Compact Regular.woff2') format('woff2'),
       url('assets/fonts/PP Right Serif - Compact Regular.woff') format('woff'),
       url('assets/fonts/PP Right Serif - Compact Regular.ttf') format('truetype'),
       url('assets/fonts/PP Right Serif - Compact Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gambarino';
  src: url('assets/fonts/Gambarino-Regular.woff2') format('woff2'),
       url('assets/fonts/Gambarino-Regular.woff') format('woff'),
       url('assets/fonts/Gambarino-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

body {
  min-height: 100vh;
  overflow: hidden;
}

/* ─── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 62px 80px 64px;
}

/* ─── Columns FR / EN ──────────────────────────────── */
.hero__columns {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1800px;
  margin: 0 auto;
}

.hero__col {
  flex: 1;
}

.hero__col--en {
  padding-left: 40px;
}

.hero__col--fr {
  padding-right: 40px;
}

.hero__divider {
  width: 1px;
  align-self: stretch;
  background-color: #fffcf3;
  flex-shrink: 0;
  min-height: 164px;
}

/* ─── Typography ───────────────────────────────────── */
.hero__title {
  font-family: 'PP Right Serif', serif;
  font-weight: 400;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 3.4px;
  text-transform: uppercase;
  color: #fffcf3;
  margin-bottom: 24px;
}

.hero__contact {
  font-family: 'Gambarino', serif;
  font-size: clamp(16px, 1.8vw, 23px);
  line-height: 1.1;
  color: #fffcf3;
}

.hero__contact a {
  font-family: 'Gambarino', serif;
  color: #fffcf3;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.hero__contact a:hover {
  opacity: 0.8;
}

/* ─── CTA Button ───────────────────────────────────── */

.container__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 10px 20px;
  background-color: #8e321e;
  transition: background-color 500ms ease;
  color: #fffcf3;
  gap:10px;
  font-family: 'Gambarino', serif;
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
}

.hero__cta {
  font-family: 'Gambarino', serif;
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 1.1;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: #fffcf3;

}

.container__cta:hover {
  background-color: #DDB1C1;
}

@media (max-width: 380px) {
  .container__cta {
    flex-wrap: wrap;
  }
  .cta__separator {
    display: none;
  }
}

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .hero__content {
    padding: 40px 24px 40px;
  }

  .hero__columns {
    flex-direction: column;
  }

  .hero__divider {
    width: 100%;
    height: 1px;
    min-height: 0;
    margin: 32px 0;
  }

  .hero__col--fr,
  .hero__col--en {
    padding: 0;
  }

  .hero__title {
    letter-spacing: 1.8px;
  }
}

@media (min-width: 1900px) {
  .hero__content {
    max-width: 1600px;
    margin: 0 auto;
  }
}
