@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --cream: #fcf4ee;
  --purple: #441c4c;
  --muted-purple: #774b8a;
  --light-purple: rgba(214, 203, 211, 0.62);
  --pale-purple: rgba(221, 211, 218, 0.68);
  --warm-beige: rgba(239, 225, 206, 0.74);
  --gold: #cd9848;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: var(--purple);
  background: var(--cream);
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.background-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  display: block;
  pointer-events: none;
  will-change: transform;
  transition: width 500ms ease, height 500ms ease, inset 500ms ease;
}

.blob-left {
  width: clamp(252px, 25.9vw, 412px);
  height: clamp(226px, 23.9vw, 372px);
  left: clamp(-160px, -7vw, -72px);
  top: clamp(48px, 6vh, 82px);
  border-radius: 68% 32% 57% 43% / 36% 66% 39% 61%;
  background: var(--light-purple);
  animation: float-left 18s ease-in-out infinite alternate;
}

.blob-centre {
  width: clamp(150px, 15vw, 240px);
  height: clamp(175px, 17vw, 270px);
  left: clamp(53%, 59vw, 64%);
  top: clamp(31%, 38vh, 46%);
  border-radius: 63% 37% 52% 48% / 46% 61% 39% 54%;
  background: var(--warm-beige);
  animation: float-centre 16s ease-in-out infinite alternate;
}

.blob-right {
  width: clamp(191px, 19.8vw, 316px);
  height: clamp(235px, 22.8vw, 368px);
  right: clamp(-135px, -6vw, -60px);
  top: clamp(510px, 80vh, 900px);
  border-radius: 39% 61% 33% 67% / 54% 36% 64% 46%;
  background: var(--pale-purple);
  animation: float-right 20s ease-in-out infinite alternate;
}

@keyframes float-left {
  from { transform: translate3d(0, 0, 0) rotate(-8deg) scale(1); }
  to { transform: translate3d(1.4vw, -0.8vh, 0) rotate(-5deg) scale(1.02); }
}

@keyframes float-centre {
  from { transform: translate3d(0, 0, 0) rotate(8deg) scale(1); }
  to { transform: translate3d(-0.8vw, 1vh, 0) rotate(12deg) scale(1.02); }
}

@keyframes float-right {
  from { transform: translate3d(0, 0, 0) rotate(12deg) scale(1); }
  to { transform: translate3d(-1vw, -0.8vh, 0) rotate(15deg) scale(1.02); }
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.35rem clamp(1.5rem, 5vw, 4rem);
  background: var(--cream);
  border-bottom: 0.5px solid var(--gold);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(82px, 8vw, 118px);
  flex-shrink: 0;
  text-decoration: none;
}

.brand img,
.hero-logo,
.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 4vw, 3rem);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--muted-purple);
}

.nav-links a {
  color: inherit;
  text-decoration: none;
}

.nav-links a.active {
  color: #45234a;
}

.outline-button {
  padding: 0.45rem 1.55rem;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  color: var(--gold) !important;
  line-height: 1.1;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease;
}

.outline-button:hover,
.outline-button:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff !important;
}

.hero {
  position: relative;
  z-index: 1;
  width: min(660px, 78vw);
  margin: 0 auto;
  padding: clamp(4.6rem, 12vh, 8.5rem) 0 2rem;
  text-align: center;
}

.hero-logo-wrap {
  width: min(360px, 62vw);
  margin: 0 auto 3rem;
}

h1 {
  max-width: 430px;
  margin: 0 auto;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--purple);
}

h1 span {
  color: #9e7db8;
}

p {
  max-width: 470px;
  margin: 1.6rem auto 0;
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: var(--muted-purple);
}

.actions {
  display: flex;
  justify-content: center;
  gap: 1.3rem;
  flex-wrap: wrap;
  margin-top: 3.2rem;
  font-weight: 700;
}

.button {
  min-width: 220px;
  padding: 1.05rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: white;
}

.button-secondary {
  border: 2px solid var(--purple);
  color: var(--purple);
}

.star-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: min(520px, 82vw);
  margin: 3.5rem auto 0;
  color: var(--gold);
}

.star-separator::before,
.star-separator::after {
  content: "";
  flex: 1;
  height: 0.9px;
  background: linear-gradient(
    90deg,
    rgba(205, 152, 72, 0),
    rgba(205, 152, 72, 0.85)
  );
}

.star-separator::after {
  background: linear-gradient(
    90deg,
    rgba(205, 152, 72, 0.85),
    rgba(205, 152, 72, 0)
  );
}

.star-separator span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  color: var(--gold);
}

.social-strip {
  position: relative;
  z-index: 1;
  width: min(720px, 84vw);
  margin: 0 auto;
  padding: 1.25rem 0 4.5rem;
  text-align: center;
}

.social-strip h2 {
  max-width: 440px;
  margin: 0 auto;
  font-family: 'Playfair Display', Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--purple);
}

.social-strip p {
  max-width: 430px;
  margin: 0.95rem auto 0;
  font-size: 1rem;
  line-height: 1.6rem;
  color: var(--muted-purple);
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.social-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 170px;
  padding: 0.78rem 1.35rem;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: background-color 200ms ease, color 200ms ease, transform 180ms ease;
}

.social-button:hover,
.social-button:focus-visible {
  background: var(--gold);
  color: #ffffff;
  transform: translateY(-1px);
}

.social-button svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  color: currentColor;
}

.footer {
  position: relative;
  z-index: 2;
  margin-top: auto;
  background: var(--cream);
  padding: clamp(2.2rem, 4vw, 3.2rem) clamp(1.5rem, 5vw, 4rem) 1.1rem;
  color: var(--muted-purple);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(0.35rem, 1.5vw, 1.25rem);
  right: clamp(0.35rem, 1.5vw, 1.25rem);
  height: 0.9px;
  background: linear-gradient(
    90deg,
    rgba(205, 152, 72, 0),
    rgba(205, 152, 72, 0.22) 10%,
    rgba(205, 152, 72, 0.85) 28%,
    rgba(205, 152, 72, 0.85) 72%,
    rgba(205, 152, 72, 0.22) 90%,
    rgba(205, 152, 72, 0)
  );
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(130px, 0.65fr) minmax(130px, 0.65fr);
  gap: clamp(2.5rem, 9vw, 8rem);
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 0;
}

.footer-brand {
  width: clamp(82px, 8vw, 118px);
  display: inline-flex;
}

.footer-tagline {
  max-width: 360px;
  margin: 1.1rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--muted-purple);
}

.footer-column h2 {
  margin: 0 0 0.9rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 0.58rem 0;
  color: var(--muted-purple);
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.25em;
  transition: color 180ms ease;
}

.footer-column .social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  color: currentColor;
}

.social-link .instagram-icon,
.social-link .tiktok-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.footer-column a.active,
.footer-bottom a.active {
  color: #45234a;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  width: calc(100% + clamp(3rem, 10vw, 8rem));
  margin: 2.5rem calc(clamp(1.5rem, 5vw, 4rem) * -1) 0;
  padding: 1rem clamp(1.5rem, 5vw, 4rem) 0;
  border-top: 0.5px solid rgba(205, 152, 72, 0.35);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  line-height: 1rem;
  color: var(--muted-purple);
}

.footer-bottom a {
  color: var(--muted-purple);
  text-decoration: none;
  margin-left: 1.2rem;
  transition: color 180ms ease;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--gold);
}

@media (max-width: 760px) {
  .nav {
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .brand {
    width: 118px;
  }

  .hero {
    width: min(540px, 84vw);
    padding-top: 4.5rem;
  }

  .hero-logo-wrap {
    width: min(300px, 72vw);
    margin-bottom: 2.4rem;
  }

  .blob-left {
    width: 239px;
    height: 213px;
    left: -100px;
    top: 56px;
  }

  .blob-centre {
    width: 150px;
    height: 175px;
    left: 64vw;
    top: 44vh;
  }

  .blob-right {
    width: 184px;
    height: 228px;
    right: -115px;
    top: 620px;
  }

  .social-strip {
    width: min(540px, 84vw);
    padding: 1rem 0 3.5rem;
  }

  .social-strip h2 {
    font-size: 1.8rem;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social-button {
    width: min(260px, 100%);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blob {
    animation: none;
  }
}
