@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #131313;
  --paper: rgba(14, 14, 14, 0.36);
  --paper-soft: rgba(246, 240, 232, 0.14);
  --accent: #14706a;
  --paper-text: #f6f0e8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  --pill: 999px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", "Avenir Next", Arial, sans-serif;
  color: white;
  background:
    linear-gradient(180deg, rgba(12, 13, 13, 0.72), rgba(12, 13, 13, 0.42)),
    url("https://images.squarespace-cdn.com/content/v1/609e9b334e21fc304759e644/ae9293df-4092-4796-be81-70db0592faa4/Terrasse+la+Friche+Montaudran+-+LA+FRICHE+GOURMANDE.webp") center / cover no-repeat fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.home {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.panel {
  width: min(1100px, 100%);
  display: grid;
  gap: 20px;
  padding: 52px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.46), rgba(14, 14, 14, 0.24));
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.panel::before {
  content: "";
  width: min(260px, 42vw);
  height: 72px;
  background: url("https://images.squarespace-cdn.com/content/v1/609e9b334e21fc304759e644/8f29b858-6188-4683-a71c-9021dbbfc50c/LA+FRICHE.png?format=1500w") left center / contain no-repeat;
}

p,
.lead {
  margin: 0;
}

p {
  color: var(--paper-text);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(52px, 8vw, 98px);
  line-height: 0.92;
  text-transform: uppercase;
}

.lead {
  max-width: 720px;
  font-size: 20px;
  font-weight: 600;
}

.actions,
.uses {
  display: grid;
  gap: 16px;
}

.actions {
  grid-template-columns: repeat(3, minmax(0, 220px));
}

.actions a {
  display: grid;
  place-items: center;
  min-height: 64px;
  padding: 0 22px;
  border-radius: var(--pill);
  color: white;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  background: #111111;
}

.actions a:nth-child(2) {
  background: var(--accent);
}

.actions a:nth-child(3) {
  color: var(--ink);
  background: #f6f0e8;
}

.uses {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.uses article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  background: var(--paper-soft);
}

.uses strong {
  font-size: 18px;
}

.uses span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
}

@media (max-width: 860px) {
  .panel {
    padding: 28px;
  }

  .actions,
  .uses {
    grid-template-columns: 1fr;
  }
}
