@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/roboto-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/roboto-normal-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Mountains of Christmas";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/mountains-of-christmas-400.woff2") format("woff2");
}

@font-face {
  font-family: "Mountains of Christmas";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/mountains-of-christmas-700.woff2") format("woff2");
}

:root {
  --primary: #cc0404;
  --text: #272727;
  --muted: #9ca3af;
  --footer: #111827;
  --green-bg: #dcfce7;
  --green-text: #166534;
  --star: #facc15;
  --check: #22c55e;
  --field: #8b8f96;
  --soft-card: #f9fafb;
  --quote-card: #fef2f2;
  --container: 1140px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -10000em;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  top: 8px;
  left: 8px;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 8px 12px;
  background: #fff;
  color: var(--primary);
}

.container {
  width: min(100% - 30px, var(--container));
  margin-inline: auto;
}

.site-header {
  background: #fff;
}

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

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand span {
  color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.header-cta,
.primary-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, opacity .2s ease;
}

.header-cta {
  padding: 12px 24px;
  font-size: 15px;
}

.header-cta:hover,
.primary-button:hover,
.submit-button:hover {
  background: #b50303;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background-color: #e6e6e6;
  background-image:
    linear-gradient(301deg, rgba(254, 242, 242, .08) 0%, rgba(240, 253, 244, .08) 100%),
    url("/assets/images/bgnoel.webp");
  background-position: top left;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(0, 0, 0, .08);
  pointer-events: none;
}

#snow-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 100vh;
  padding-block: 40px;
}

.hero-copy,
.gallery-grid {
  width: 50%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.saison {
  display: inline-block;
  border: 1px solid var(--green-bg);
  border-radius: 10px;
  background: var(--green-bg);
  color: var(--green-text);
  padding: 5px 10px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1;
}

.saison.centered {
  margin-inline: auto;
}

.hero h1,
.form-column h2 {
  margin: 0;
  font-family: "Mountains of Christmas", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero h1 {
  color: #fff;
  font-size: 4rem;
}

.hero-copy p {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
}

.primary-button {
  margin-top: 6px;
  padding: 1rem 2rem;
  font-size: 1.15rem;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.15rem;
}

.stars {
  color: var(--star);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
}

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

.gallery-grid a {
  display: block;
  overflow: hidden;
  border-radius: 20px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  transition: transform .2s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.025);
}

.quote-section {
  min-height: 100vh;
  padding: 60px 15px;
  background: #fff;
}

.form-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: calc(100vh - 120px);
}

.form-column {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-column h2 {
  color: var(--primary);
  text-align: center;
  font-size: 3rem;
}

.subline {
  margin: 0 0 4px;
  text-align: center;
  font-size: 1.15rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.field-group label {
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--field);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  padding: .5rem 1rem;
  line-height: 1.5;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field-group textarea {
  min-height: 126px;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(204, 4, 4, .12);
}

.submit-button {
  width: 100%;
  gap: 7px;
  padding: 1.3rem 1rem;
  font-size: 1rem;
}

.submit-button svg {
  width: 12px;
  height: 14px;
  fill: currentColor;
  order: 2;
}

.submit-button[disabled] {
  opacity: .7;
  cursor: not-allowed;
}

.form-status {
  min-height: 24px;
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.form-status.success {
  color: var(--green-text);
}

.form-status.error {
  color: var(--primary);
}

.trust-column {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.choice-card,
.testimonial {
  border-radius: 10px;
  padding: 2rem;
}

.choice-card {
  background: var(--soft-card);
}

.choice-card h3 {
  margin: .5rem 0 1rem;
  color: var(--text);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
}

.choice-card ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.choice-card li {
  display: flex;
  gap: 12px;
  color: var(--text);
}

.choice-card svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  fill: none;
  stroke: var(--check);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial {
  margin: 0;
  background: var(--quote-card);
  text-align: center;
}

.testimonial svg {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  fill: var(--primary);
}

.testimonial p {
  margin: 0;
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 600;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(204, 4, 4, .16), transparent 34%),
    var(--footer);
  color: #fff;
  padding: 56px 0 24px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--primary);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(150px, 1fr));
  gap: 36px;
  align-items: start;
}

.footer-about {
  max-width: 430px;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-brand h2 {
  margin: 0;
  font-family: "Mountains of Christmas", sans-serif;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.footer-about p {
  margin: 0;
  color: #d1d5db;
  font-size: 1rem;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-cta:hover {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .14);
}

.footer-col h2 {
  margin: 8px 0 16px;
  color: #fff;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #d1d5db;
  list-style: none;
}

.footer-col li {
  line-height: 1.35;
}

.footer-contact {
  display: grid;
  gap: 10px;
  color: #d1d5db;
  font-style: normal;
}

.footer-contact a {
  color: #fff;
  font-weight: 700;
  transition: color .2s ease;
}

.footer-contact a:hover,
.footer-bottom a:hover {
  color: #fecaca;
}

.footer-contact span {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-top: 22px;
  color: var(--muted);
  font-size: .9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #d1d5db;
  font-weight: 700;
  transition: color .2s ease;
}

.mobile-sticky-cta {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  display: none;
  padding: 10px 15px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 -8px 24px rgba(17, 24, 39, .14);
  backdrop-filter: blur(10px);
}

.mobile-sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.mobile-sticky-cta__primary {
  background: var(--primary);
  color: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .85);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
}

.lightbox.is-loading::before,
.lightbox.is-error::before {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.lightbox.is-loading::before {
  content: "Chargement...";
}

.lightbox.is-error::before {
  content: "Image indisponible";
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .header-inner {
    min-height: 64px;
  }

  .brand span {
    font-size: 24px;
  }

  .header-cta {
    display: none;
  }

  .hero-inner,
  .form-inner {
    flex-direction: column;
  }

  .hero-copy,
  .gallery-grid,
  .form-column,
  .trust-column {
    width: 100%;
  }

  .hero h1,
  .form-column h2 {
    font-size: 2rem;
  }

  .hero-inner {
    padding-block: 36px;
  }

  .gallery-grid {
    transform: rotate(0deg);
  }

  .quote-section {
    padding-block: 60px;
  }

  .choice-card,
  .testimonial {
    padding: 1rem;
  }

  .site-footer {
    padding-top: 44px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-about {
    max-width: none;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 32px;
  }

  .mobile-sticky-cta {
    display: grid;
  }
}
