:root {
  --navy-950: #0a1220;
  --navy-900: #0e1a2c;
  --navy-800: #16273f;
  --sand-100: #f4ecdd;
  --lavender-400: #ad93d6;
  --lavender-300: #c9b6e6;
  --gold-400: #e6b36c;
  --gold-300: #f0cf9b;
  --white: #fbf8f3;
  --ink-muted: rgba(244, 236, 221, 0.62);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background: var(--navy-950);
  color: var(--white);
  font-family: 'Jost', 'Segoe UI', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ambient sunset glow, echoes the horizon in the logo photograph */
.sky {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 28%, rgba(230, 179, 108, 0.16), transparent 70%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(173, 147, 214, 0.14), transparent 70%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
}

.sky::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 20%, rgba(251,248,243,0.5), transparent 60%),
    radial-gradient(1px 1px at 78% 15%, rgba(251,248,243,0.35), transparent 60%),
    radial-gradient(1.5px 1.5px at 32% 8%, rgba(251,248,243,0.4), transparent 60%),
    radial-gradient(1px 1px at 88% 32%, rgba(251,248,243,0.3), transparent 60%),
    radial-gradient(1px 1px at 60% 12%, rgba(251,248,243,0.3), transparent 60%),
    radial-gradient(1.5px 1.5px at 20% 40%, rgba(251,248,243,0.22), transparent 60%);
  opacity: 0.8;
}

.stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  padding: 8vh 24px 6vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--lavender-300);
  opacity: 0;
  animation: rise 0.9s ease-out 0.15s forwards;
}

.eyebrow span {
  color: var(--gold-300);
}

/* logo medallion */
.medallion {
  position: relative;
  margin: 34px 0 30px;
  width: clamp(222px, 39vw, 312px);
  height: clamp(222px, 39vw, 312px);
  opacity: 0;
  animation: rise 1s ease-out 0.35s forwards;
}

.medallion::before {
  content: "";
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,179,108,0.35) 0%, rgba(173,147,214,0.18) 45%, transparent 72%);
  filter: blur(2px);
  animation: breathe 5.5s ease-in-out infinite;
}

.medallion img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  display: block;
  box-shadow:
    0 0 0 1px rgba(251,248,243,0.14),
    0 18px 60px rgba(0,0,0,0.55);
}

h1.headline {
  font-family: 'Fraunces', serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
  background: linear-gradient(115deg, var(--white) 20%, var(--gold-300) 55%, var(--lavender-300) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  animation: rise 1s ease-out 0.55s forwards;
}

/* divider echoing the hexagonal roofline in the mark */
.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0 20px;
  opacity: 0;
  animation: rise 0.9s ease-out 0.75s forwards;
}

.divider .line {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lavender-400));
}
.divider .line.right { background: linear-gradient(90deg, var(--lavender-400), transparent); }

.divider svg { width: 20px; height: 20px; }

p.lede {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: clamp(0.98rem, 2.2vw, 1.12rem);
  line-height: 1.65;
  color: var(--ink-muted);
  max-width: 500px;
  margin: 0;
  opacity: 0;
  animation: rise 1s ease-out 0.9s forwards;
}

p.lede strong {
  color: var(--sand-100);
  font-weight: 500;
}

/* coastline horizon rule */
.horizon {
  width: min(420px, 84vw);
  height: 18px;
  margin: 35px 0 35px;
  opacity: 0;
  animation: rise 1s ease-out 1.05s forwards;
}

.horizon svg { width: 100%; height: 100%; display: block; }
.horizon path {
  fill: none;
  stroke: var(--gold-400);
  stroke-width: 1;
  stroke-linecap: round;
  opacity: 0.55;
}

.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  opacity: 0;
  animation: rise 1s ease-out 1.2s forwards;
}

.contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--sand-100);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--gold-300);
}

.contact a:focus-visible {
  outline: 1px solid var(--gold-300);
  outline-offset: 4px;
  border-radius: 2px;
}

.contact svg {
  width: 17px;
  height: 17px;
  stroke: var(--lavender-300);
  flex-shrink: 0;
}

.contact .sep {
  width: 1px;
  height: 14px;
  background: rgba(244,236,221,0.2);
}

.tagline {
  margin-top: 30px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--lavender-300);
  opacity: 0;
  animation: rise 1s ease-out 1.35s forwards;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.08); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow, .medallion, h1.headline, .divider, p.lede, .horizon, .contact, .tagline {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .medallion::before { animation: none; }
}

@media (max-width: 420px) {
  .contact { gap: 8px 18px; }
  .contact .sep { display: none; }
}

/* floating WhatsApp button */
.whatsapp-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 10;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fbf8f3;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4), 0 0 0 1px rgba(251,248,243,0.08);
  animation: fab-rise 0.6s ease-out 1.5s backwards, fab-pulse 2.6s ease-in-out 2.2s infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-fab svg {
  width: 38px;
  height: 38px;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 32px rgba(0,0,0,0.45), 0 0 0 1px rgba(251,248,243,0.14);
}

.whatsapp-fab:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 3px;
}

@keyframes fab-rise {
  from { opacity: 0; transform: translateY(16px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(0,0,0,0.4), 0 0 0 1px rgba(251,248,243,0.08); }
  50%      { box-shadow: 0 10px 28px rgba(0,0,0,0.4), 0 0 0 10px rgba(37,211,102,0); }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab { animation: none; }
}

@media (max-width: 420px) {
  .whatsapp-fab {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-fab svg { width: 26px; height: 26px; }
}
