:root {
  --teal: #005567;
  --teal-dark: #004756;
  --teal-soft: #0a6877;
  --lime: #c8cb17;
  --lime-dark: #b9bd0c;
  --ink: #25272a;
  --muted: #5f6469;
  --cream: #fffdf5;
  --line: rgba(0, 85, 103, 0.12);
  --shadow: 0 18px 45px rgba(0, 65, 78, 0.10);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 15%, rgba(255,255,255,.98), rgba(255,255,255,.82) 36%, rgba(255,253,245,.96) 100%);
  color: var(--ink);
  font-family:
    "Avenir Next",
    "Segoe UI",
    "Helvetica Neue",
    Arial,
    sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

svg {
  display: block;
}

/* =========================
   Décor organique de fond
   ========================= */

.background-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 1;

  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 32px 0 112px;
}

.flower-decor {
  position: absolute;
  display: block;
  height: auto;

  pointer-events: none;
  user-select: none;
}

/* En haut à gauche */
.flower-decor--top-left {
  width: 310px;

  top: -170px;
  left: -150px;

  transform: rotate(-30deg);

  opacity: 0.20;
}

/* Grande fleur principale à droite */
.flower-decor--right {
  width: 680px;

  top: 120px;
  right: -390px;

  transform: rotate(15deg);

  opacity: 0.18;
}

/* En bas à gauche */
.flower-decor--bottom-left {
  width: 350px;

  bottom: -210px;
  left: -190px;

  transform: rotate(32deg);

  opacity: 0.20;
}
@media (max-width: 700px) {

  .flower-decor--top-left {
    width: 230px;
    top: -100px;
    left: -120px;
  }

  .flower-decor--right {
    width: 390px;
    right: -260px;
    top: 260px;

    opacity: 0.23;
  }

  .flower-decor--bottom-left {
    width: 280px;
    left: -170px;
    bottom: -130px;

    opacity: 0.25;
  }
}

/* =========================
   Mise en page générale
   ========================= */

.page-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding: 32px 0 52px;
}

.maintenance-card {
  position: relative;
}

.site-header {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.brand-logo {
  width: min(540px, 82vw);
  height: auto;
  display: block;
}

.intro {
  max-width: 830px;
  margin: 0 auto 38px;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--lime-dark);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--teal-dark);
  font-size: clamp(2.35rem, 5vw, 4.85rem);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 850;
}

h1 span {
  display: block;
}

.headline-accent {
  width: 92px;
  height: 7px;
  border-radius: 999px;
  margin: 24px 0 20px;
  background: var(--lime);
}

.intro-text {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  line-height: 1.55;
  color: #2d3034;
}

/* =========================
   Informations
   ========================= */

.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  gap: 34px;
  align-items: start;
  margin-top: 34px;
}

.contact-panel {
  padding: 14px 0;
}

.contact-panel h2,
.hours-card h2 {
  margin: 0;
  color: var(--teal-dark);
}

.contact-panel h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.contact-panel h2 span {
  display: block;
}

.contact-list {
  margin: 20px 0 0;
  font-style: normal;
}

.contact-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  font-size: 1.08rem;
  transition: transform .18s ease, color .18s ease;
}

.contact-row:hover {
  color: var(--teal);
  transform: translateX(4px);
}

.icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal);
  box-shadow: 0 8px 18px rgba(0, 85, 103, .16);
}

.icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: white;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hours-card {
  border: 1px solid rgba(200, 203, 23, .20);
  background: rgba(255, 254, 248, .86);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 24px 28px;
  backdrop-filter: blur(8px);
}

.hours-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.hours-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -.02em;
}

.clock-icon {
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 3px solid var(--lime);
  color: var(--lime-dark);
}

.clock-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hours-list {
  margin: 0;
}

.hours-list > div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(0, 85, 103, .13);
}

.hours-list > div:last-child {
  border-bottom: 0;
}

.hours-list dt {
  font-weight: 800;
  color: var(--teal-dark);
}

.hours-list dd {
  margin: 0;
  color: #303438;
}

.hours-list small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-style: italic;
}

/* =========================
   Facebook
   ========================= */

.facebook-wrap {
  display: flex;
  justify-content: center;
  margin: 26px auto 0;
}

.facebook-button {
  min-height: 62px;
  width: min(100%, 580px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 15px;
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 85, 103, .18);
  transition: transform .18s ease, box-shadow .18s ease;
}

.facebook-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 85, 103, .24);
}

.facebook-button:focus-visible,
.contact-row:focus-visible {
  outline: 4px solid rgba(200, 203, 23, .5);
  outline-offset: 4px;
}

.facebook-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  color: var(--teal);
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

/* =========================
   Signature
   ========================= */

.closing {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  color: var(--teal-dark);
padding-bottom: 40px;
}

.closing p {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.closing strong {
  font-size: 1.2rem;
}

.closing p span {
  margin-top: -2px;
  font-family: "Segoe Print", "Bradley Hand", "Brush Script MT", cursive;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.heart {
  width: 46px;
  height: 46px;
  color: var(--lime-dark);
}

.heart svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================
   Vague du bas
   ========================= */

.bottom-wave {
  position: fixed;
  z-index: 2;

  left: -4vw;
  right: -4vw;
  bottom: -54px;

  height: 105px;

  background: linear-gradient(
    90deg,
    #d4d80d,
    #bfc515
  );

  border-radius: 55% 45% 0 0 / 65% 52% 0 0;
  transform: rotate(-1deg);

  pointer-events: none;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 860px) {
  .page-shell {
    padding-top: 22px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hours-card {
    padding: 22px;
  }

  .intro {
    margin-bottom: 24px;
  }

  .contact-panel {
    padding-bottom: 0;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 24px, var(--max-width));
    padding-bottom: 90px;
  }

  .brand-logo {
    width: min(420px, 94vw);
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .intro-text {
    font-size: 1rem;
  }

  .contact-row {
    grid-template-columns: 46px 1fr;
    gap: 12px;
    font-size: .98rem;
  }

  .icon {
    width: 42px;
    height: 42px;
  }

  .icon svg {
    width: 22px;
    height: 22px;
  }

  .hours-card {
    border-radius: 18px;
    padding: 20px 18px;
  }

  .hours-list > div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 9px 0;
  }

  .facebook-button {
    min-height: 58px;
    padding: 11px 16px;
  }

  .facebook-icon {
    width: 38px;
    height: 38px;
  }

  .closing {
    align-items: flex-start;
  }


}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
