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

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: #2c2418;
  background: #faf6f0;
}

.background-grid {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 0.75rem;
  z-index: 0;
}

.background-tile {
  background: center / cover no-repeat;
  border-radius: 0.75rem;
  opacity: 0.55;
  filter: blur(1px) saturate(1.05);
}

.background-tile:nth-child(1) { background-image: url("images/instagram-bg.jpg"); }
.background-tile:nth-child(2) { background-image: url("images/instagram-1.jpg"); }
.background-tile:nth-child(3) { background-image: url("images/instagram-2.jpg"); }
.background-tile:nth-child(4) { background-image: url("images/instagram-3.jpg"); }
.background-tile:nth-child(5) { background-image: url("images/instagram-4.jpg"); }
.background-tile:nth-child(6) { background-image: url("images/instagram-5.jpg"); }
.background-tile:nth-child(7) { background-image: url("images/instagram-6.jpg"); }
.background-tile:nth-child(8) { background-image: url("images/instagram-7.jpg"); }
.background-tile:nth-child(9) { background-image: url("images/instagram-bg.jpg"); }
.background-tile:nth-child(10) { background-image: url("images/instagram-1.jpg"); }
.background-tile:nth-child(11) { background-image: url("images/instagram-2.jpg"); }
.background-tile:nth-child(12) { background-image: url("images/instagram-3.jpg"); }

.background-overlay {
  position: fixed;
  inset: 0;
  background: rgba(250, 246, 240, 0.72);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.card {
  width: min(100%, 28rem);
  padding: 3rem 2.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(44, 36, 24, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 24px 48px rgba(44, 36, 24, 0.08);
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: system-ui, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7560;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.subtitle {
  margin: 1rem 0 2rem;
  font-family: system-ui, sans-serif;
  font-size: 1rem;
  color: #6b5c4d;
}

.contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-link {
  display: inline-block;
  margin-bottom: 0;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  color: #2c2418;
  text-decoration: none;
  border-bottom: 1px solid rgba(44, 36, 24, 0.35);
  padding-bottom: 0.15rem;
  transition: opacity 0.2s ease;
}

.contact-link:hover {
  opacity: 0.65;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2c2418;
  transition: opacity 0.2s ease;
}

.social-link:hover {
  opacity: 0.65;
}

.social-link svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

.note {
  margin: 0;
  font-family: system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b5c4d;
}

.heart {
  color: #e53935;
}
