/* ============================================================
   Linaya — page "Coming Soon" / site en construction
   Recréation responsive du poster (crème + or, script LinAya)
   ============================================================ */

.root {
  --bg: #f5efe4;
  --bg-soft: #efe6d6;
  --cream: #faf5eb;
  --halo: #f7ebe4;
  --ink: #5b360c;
  --ink-soft: #7a6c58;
  --gold: #a87f3e;
  --gold-light: #c9a35c;
  --gold-deep: #856326;
  --line: rgba(168, 127, 62, 0.34);
  --line-soft: rgba(168, 127, 62, 0.2);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", system-ui, sans-serif;

  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3.5vw, 24px) clamp(16px, 3.5vw, 48px)
    clamp(16px, 3.5vw, 48px);
  position: relative;
  isolation: isolate;
  background-color: var(--halo);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

/* ---------- Fond palais ----------
   moitié gauche collée à gauche, moitié droite collée à droite,
   centre rempli par le halo (#f7ebe4) + lueur radiale. Fixe = ne
   suit pas le scroll et reste dimensionné sur le viewport. */
.root::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: var(--halo);
  background-image: radial-gradient(
      ellipse 62% 58% at 50% 40%,
      rgba(250, 243, 234, 0.8) 0%,
      rgba(250, 243, 234, 0.42) 46%,
      rgba(250, 243, 234, 0) 76%
    ),
    url(coming-soon-bg-left.webp), url(coming-soon-bg-right.webp);
  background-position: center, left center, right center;
  background-size: cover, auto 100%, auto 100%;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

@media (max-width: 760px) {
  /* sur mobile : image entière en cover (les deux moitiés se
     chevaucheraient), même halo par-dessus */
  .root::before {
    background-image: radial-gradient(
        ellipse 86% 62% at 50% 42%,
        rgba(250, 243, 234, 0.74),
        rgba(250, 243, 234, 0) 80%
      ),
      url(coming-soon-bg.webp);
    background-position: center, center top;
    background-size: cover, cover;
  }
}

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

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

/* ---------- Card / cadre orné ---------- */
.frame {
  position: relative;
  width: 100%;
  max-width: 1140px;
  padding: clamp(28px, 4vw, 56px) clamp(22px, 5.5vw, 86px)
    clamp(26px, 3.5vw, 46px);
  border: 1px solid var(--line);
  background: linear-gradient(
    180deg,
    rgba(249, 240, 232, 0.46),
    rgba(247, 236, 228, 0.3)
  );
  -webkit-backdrop-filter: blur(1.5px) saturate(1.02);
  backdrop-filter: blur(1.5px) saturate(1.02);
  z-index: 1;
  animation: fadeUp 1s ease both;
}

/* double filet intérieur */
.frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}

/* équerres dorées aux 4 coins */
.corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--gold);
  opacity: 0.7;
  z-index: 2;
}
.cTL {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}
.cTR {
  top: -1px;
  right: -1px;
  border-left: 0;
  border-bottom: 0;
}
.cBL {
  bottom: -1px;
  left: -1px;
  border-right: 0;
  border-top: 0;
}
.cBR {
  bottom: -1px;
  right: -1px;
  border-left: 0;
  border-top: 0;
}

/* ---------- Marque ---------- */
.brand {
  text-align: center;
  position: relative;
  z-index: 3;
}

.logo {
  display: block;
  width: min(440px, 72%);
  height: auto;
  margin: 0 auto;
  animation: fadeUp 1.1s ease both;
}

.tagline {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(10px, 1.5vw, 13px);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 500;
  color: #5b360c;
}

.tagline span {
  white-space: nowrap;
}

.dot {
  width: 5px;
  height: 5px;
  flex: none;
  transform: rotate(45deg);
  background: var(--gold);
}

.ornament {
  display: block;
  margin: 22px auto 0;
  width: 54px;
  height: auto;
  color: var(--gold);
  opacity: 0.85;
}

/* ---------- Hero "Coming soon" ---------- */
.hero {
  text-align: center;
  margin-top: clamp(12px, 2vw, 22px);
  position: relative;
  z-index: 3;
}

.comingSoon {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.06em;
  font-size: clamp(50px, 10vw, 90px);
  color: #5b360c;
  text-transform: uppercase;
  animation: fadeUp 1.2s 0.1s ease both;
}

.comingSoon span {
  display: block;
}

/* petit séparateur + cœur sous le titre */
.heartRule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: clamp(10px, 1.8vw, 16px) auto clamp(10px, 1.6vw, 14px);
  color: var(--gold);
}
.heartRule::before,
.heartRule::after {
  content: "";
  width: clamp(40px, 9vw, 96px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.heartRule::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.heart {
  width: 16px;
  height: 16px;
  flex: none;
}

.subtitle {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid var(--line);
  font-size: clamp(11px, 1.7vw, 15px);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.7;
  animation: fadeUp 1.3s 0.2s ease both;
}

/* ---------- 3 colonnes ---------- */
.cols {
  margin-top: clamp(22px, 3.5vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 56px);
  position: relative;
  z-index: 3;
}

.col {
  text-align: center;
  padding: 0 clamp(0px, 1.5vw, 18px);
  position: relative;
}
.col + .col::before {
  content: "";
  position: absolute;
  left: calc(clamp(20px, 4vw, 56px) / -2);
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line-soft);
}

.iconCircle {
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
}
.iconCircle svg {
  width: 24px;
  height: 24px;
}

.colTitle {
  font-size: clamp(12px, 1.7vw, 14px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.45;
}

.colText {
  font-size: clamp(12px, 1.5vw, 13.5px);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 30ch;
  margin: 0 auto;
}

/* ---------- Bandeau livraison ---------- */
.delivery {
  margin-top: clamp(22px, 3.5vw, 38px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 30px);
  padding: 18px 24px;
  border: 1px solid var(--line);
  font-size: clamp(11px, 1.8vw, 15px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  z-index: 3;
}
.delivery svg {
  width: 26px;
  height: 26px;
  flex: none;
  color: var(--gold);
}

/* ---------- Réseaux sociaux ---------- */
.socials {
  margin-top: clamp(20px, 3vw, 34px);
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: clamp(20px, 5vw, 64px);
  position: relative;
  z-index: 3;
}

.social {
  display: flex;
  align-items: center;
  gap: 13px;
  transition: transform 0.25s ease;
}
.social:hover {
  transform: translateY(-2px);
}
.social:hover .socialIcon {
  background: var(--gold);
  color: var(--cream);
}

.socialIcon {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease;
}
.socialIcon svg {
  width: 20px;
  height: 20px;
}

.socialText {
  text-align: left;
  line-height: 1.4;
}
.socialLabel {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.socialHandle {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* ---------- Pied (lotus) ---------- */
.footOrnament {
  display: block;
  margin: clamp(14px, 2vw, 24px) auto 0;
  width: 46px;
  height: auto;
  color: var(--gold);
  opacity: 0.8;
  position: relative;
  z-index: 3;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .frame,
  .logo,
  .comingSoon,
  .subtitle {
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .cols {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .col + .col::before {
    display: none;
  }
  .col + .col {
    padding-top: 34px;
    border-top: 1px solid var(--line-soft);
  }
  .delivery {
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    letter-spacing: 0.18em;
  }
  .socials {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }
}

@media (max-width: 420px) {
  .tagline {
    gap: 9px;
    letter-spacing: 0.24em;
  }
}
