:root {
  --pink: #fcaeb8;
  --pink-soft: #fde2e6;
  --pink-light: #fff5f6;
  --brown: #90513e;
  --brown-dark: #6a3b2c;
  --cream: #fdf7f3;
  --ink: #3d2a23;
}

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

html, body { height: 100%; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 10% 0%, #ffe7ea 0%, transparent 55%),
    radial-gradient(900px 700px at 100% 100%, #fff0e8 0%, transparent 60%),
    linear-gradient(180deg, #fffaf7 0%, #fdf1ee 100%);
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Floating bubbles */
.bubbles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.bubbles span {
  position: absolute;
  bottom: -120px;
  left: var(--l);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.85), rgba(252,174,184,0.35) 60%, rgba(252,174,184,0.08) 100%);
  box-shadow:
    inset 0 0 10px rgba(255,255,255,0.6),
    0 0 20px rgba(252,174,184,0.25);
  animation: rise var(--t) linear infinite;
  animation-delay: var(--d);
  opacity: 0.75;
}
@keyframes rise {
  0%   { transform: translateY(0) translateX(0) scale(0.9); opacity: 0; }
  10%  { opacity: 0.8; }
  50%  { transform: translateY(-55vh) translateX(20px) scale(1); }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-110vh) translateX(-15px) scale(1.05); opacity: 0; }
}

/* Layout */
.stage {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 24px;
  gap: 28px;
}

.card {
  width: min(640px, 100%);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(252, 174, 184, 0.35);
  border-radius: 28px;
  padding: 48px 40px 44px;
  text-align: center;
  box-shadow:
    0 30px 60px -20px rgba(144, 81, 62, 0.18),
    0 2px 6px rgba(144, 81, 62, 0.06);
  animation: appear 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes appear {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.logo {
  width: clamp(200px, 42%, 280px);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  animation: floaty 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 24px rgba(144, 81, 62, 0.18));
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

.headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 6px 0 14px;
  line-height: 1;
}
.headline__script {
  font-family: 'Sacramento', 'Pacifico', cursive;
  font-weight: 400;
  font-size: clamp(54px, 9vw, 92px);
  color: var(--brown);
  letter-spacing: 0.5px;
  text-shadow: 0 2px 0 rgba(255,255,255,0.6);
}
.headline__line {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 3.4vw, 30px);
  color: var(--brown-dark);
  letter-spacing: 6px;
  text-transform: lowercase;
  margin-top: -6px;
}

.tagline {
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 300;
  color: #5a4238;
  max-width: 440px;
  margin: 6px auto 26px;
  line-height: 1.65;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--pink);
  margin: 4px auto 26px;
  max-width: 320px;
}
.divider span {
  display: block;
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(252,174,184,0.8), transparent);
}

.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.contact__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(252, 174, 184, 0.6);
  color: var(--brown);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
  box-shadow: 0 4px 14px rgba(144, 81, 62, 0.08);
}
.contact__item:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: var(--pink);
  box-shadow: 0 12px 28px rgba(144, 81, 62, 0.16);
}
.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--brown);
  flex: none;
}
.contact__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.contact__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: #a67666;
  font-weight: 500;
}
.contact__value {
  font-size: 15px;
  font-weight: 500;
  color: var(--brown-dark);
  margin-top: 2px;
}

.foot {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #8a6c60;
  letter-spacing: 0.4px;
  opacity: 0.9;
}
.foot__dot { color: var(--pink); }

@media (max-width: 520px) {
  .card { padding: 36px 24px 32px; border-radius: 22px; }
  .contact { flex-direction: column; align-items: stretch; }
  .contact__item { justify-content: flex-start; }
  .foot { flex-direction: column; gap: 4px; text-align: center; }
  .foot__dot { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .logo, .bubbles span, .card { animation: none !important; }
}