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

:root {
  --rose:    #c9909a;
  --blush:   #f5e6e8;
  --cream:   #fdf8f5;
  --dark:    #3a2e2e;
  --mid:     #7a5c5c;
  --light:   #b89898;
}

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: var(--cream);
  color: var(--dark);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

/* ── CONTACT BAR ─────────────────────────────────────────── */
.contact-bar {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background-color: var(--blush);
  border-bottom: 1px solid #e8d5d8;
  flex-wrap: wrap;
}

.contact-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--dark);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.6rem;
  border: 1px solid #dcc8ca;
  border-radius: 2rem;
  background: white;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.contact-bar a:hover {
  color: var(--rose);
  border-color: var(--rose);
  box-shadow: 0 2px 10px rgba(201,144,154,0.18);
}

.contact-bar svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--rose);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(201,144,154,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 10%, rgba(201,144,154,0.10) 0%, transparent 55%),
    var(--cream);
}

.hero-inner {
  max-width: 620px;
}

/* ── LOGO / ARTWORK ──────────────────────────────────────── */
.logo {
  display: block;
  width: clamp(160px, 35vw, 260px);
  margin: 0 auto 0.4rem;
  mix-blend-mode: multiply;
}

.tagline {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 1.2rem;
}


/* ── DIVIDER ─────────────────────────────────────────────── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin: 1.8rem auto;
  color: var(--rose);
  opacity: 0.6;
}

.divider span {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--rose);
  opacity: 0.5;
}

/* ── UNDER CONSTRUCTION ──────────────────────────────────── */
.under-construction {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  color: var(--mid);
  letter-spacing: 0.04em;
}

/* ── SOCIAL FOOTER ───────────────────────────────────────── */
.social-footer {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  padding: 1.4rem 1.5rem;
  background-color: var(--blush);
  border-top: 1px solid #e8d5d8;
}

.social-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #dcc8ca;
  border-radius: 50%;
  color: var(--mid);
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}

.social-footer a:hover {
  color: var(--rose);
  border-color: var(--rose);
  transform: translateY(-2px);
}

.social-footer svg {
  width: 18px;
  height: 18px;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 400px) {
  .contact-bar {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }
}

.qr-code {
	width: 250px;
	mix-blend-mode: multiply;
}