@font-face {
  font-family: "Astrovans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Astrovans-Regular.woff") format("woff");
}

@font-face {
  font-family: "Cherilyn";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Cherilyn.woff") format("woff");
}

@font-face {
  font-family: "Matcha";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/Matcha.woff") format("woff");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url("fonts/montserrat-latin.woff2") format("woff2");
}

:root {
  --pink: #eddbdd;
  --rose: #d0a9af;
  --rose-warm: #d0a89c;
  --charcoal: #423f3b;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--pink);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--pink);
  color: #000;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.hero {
  background: var(--pink);
}

.hero-inner {
  display: flex;
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-logo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
}

.hero h1 {
  margin: 0;
  padding-top: 20px;
  font-family: "Matcha", cursive;
  font-size: 63px;
  font-weight: 400;
  line-height: 1.125;
}

.hero-subtitle {
  margin: 0;
  font-family: "Cherilyn", serif;
  font-size: 29px;
  line-height: 1.125;
}

.hero-bio {
  width: 100%;
  margin: 0 0 40px;
  padding-top: 40px;
  color: rgba(0, 0, 0, 0.99);
  font-size: 25px;
  line-height: 1.6;
}

.info-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 27.2px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  background: linear-gradient(45deg, var(--rose), var(--rose-warm));
  color: rgba(0, 0, 0, 0.72);
  font-family: "Astrovans", serif;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: filter 180ms ease;
}

.info-button:hover {
  filter: brightness(1.05);
}

.instagram-link {
  color: var(--rose);
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.instagram-link:hover {
  color: #bd8e96;
  transform: translateY(-1px);
}

.instagram-link svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.instagram-link--large {
  width: 50px;
  height: 50px;
  margin-top: 40px;
}

.contact-strip {
  padding: 20px;
  background: var(--pink);
}

.contact-grid {
  display: grid;
  width: min(100%, 810px);
  min-height: 128.5px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 12px 20px;
  color: var(--charcoal);
}

.contact-item + .contact-item {
  border-left: 2px solid var(--charcoal);
}

.contact-item > svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.contact-item a,
.contact-item span {
  display: block;
  font-family: "Astrovans", serif;
  font-size: 18px;
  line-height: 1.125;
  text-decoration: none;
}

.contact-item a:hover {
  color: #000;
}

.card-cta {
  min-height: 503px;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--pink);
}

.card-cta-inner {
  display: grid;
  width: min(100%, 1040px);
  min-height: 503px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card-cta-copy {
  display: flex;
  padding-right: 20px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}

.card-cta h2 {
  margin: 0;
  font-family: "Astrovans", serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.125;
}

.card-cta p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.business-card-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.business-card-link img {
  width: 500px;
  max-width: 100%;
  height: auto;
  transform: rotate(-20deg);
  transition: transform 220ms ease;
}

.business-card-link:hover img {
  transform: rotate(-17deg) scale(1.015);
}

.contact-card-page {
  background: var(--pink);
}

.contact-card-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 10px 20px;
}

.sweet-contact-card {
  display: flex;
  width: min(100%, 600px);
  flex-direction: column;
  align-items: center;
  text-align: center;
  transform: translateY(3px);
}

.sweet-contact-card h1 {
  margin: 0;
  font-family: "Matcha", cursive;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.125;
}

.card-subtitle {
  margin: 0 0 20px;
  font-family: "Cherilyn", serif;
  font-size: 30px;
  line-height: 1.125;
}

.save-contact-button {
  padding: 10px 16px;
  border: 1px solid var(--charcoal);
  border-radius: 20px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 16px;
  letter-spacing: -0.1px;
  line-height: 1.6;
  text-decoration: none;
  transition: filter 180ms ease;
}

.save-contact-button:hover {
  filter: brightness(1.15);
}

.instagram-link--card {
  width: 36px;
  height: 36px;
  margin-top: 20px;
}

.sweet-card-details {
  display: flex;
  margin-top: 24px;
  flex-direction: column;
  gap: 18px;
  font-style: normal;
}

.sweet-card-details a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}

.round-icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
}

.round-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.whatsapp-widget {
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 20px;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.7);
  transform-origin: bottom right;
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.18, 0.89, 0.32, 1.28),
    visibility 0s linear 320ms;
}

.whatsapp-widget.is-visible {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition-delay: 0s;
}

.whatsapp-launcher {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 8px 8px 0;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 1px 6px 24px rgba(66, 63, 59, 0.24);
  color: var(--white);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.whatsapp-launcher:hover {
  background: #bd8e96;
  transform: scale(1.04);
}

.whatsapp-launcher svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.whatsapp-widget.is-open .whatsapp-launcher {
  display: none;
}

.whatsapp-dialog {
  width: min(400px, calc(100vw - 40px));
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  color: #4a4a4a;
  text-align: left;
  animation: dialog-in 200ms ease-out both;
}

.whatsapp-dialog[hidden] {
  display: none;
}

.whatsapp-header {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px 0 26px;
  background: var(--rose);
  color: var(--white);
}

.whatsapp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 500;
}

.whatsapp-brand svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.whatsapp-close {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.whatsapp-close span::before,
.whatsapp-close span::after {
  position: absolute;
  top: 16px;
  left: 10px;
  width: 14px;
  height: 2px;
  background: var(--white);
  content: "";
}

.whatsapp-close span::before {
  transform: rotate(45deg);
}

.whatsapp-close span::after {
  transform: rotate(-45deg);
}

.whatsapp-content {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 8px 8px;
  background:
    linear-gradient(rgba(208, 169, 175, 0.08), rgba(208, 169, 175, 0.16)),
    var(--white);
}

.whatsapp-message {
  position: relative;
  align-self: flex-start;
  min-height: 56px;
  margin: 0 26px;
  padding: 15px 20px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  font-size: 1rem;
  line-height: 1.55;
}

.whatsapp-message::before {
  position: absolute;
  bottom: 18px;
  left: -9px;
  width: 18px;
  height: 20px;
  background: var(--white);
  clip-path: polygon(100% 0, 100% 100%, 0 76%);
  content: "";
}

.whatsapp-open {
  display: inline-flex;
  min-width: 180px;
  height: 60px;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding-left: 24px;
  border-radius: 30px;
  background: var(--rose);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
}

.whatsapp-open svg {
  width: 60px;
  height: 60px;
  padding: 11px;
}

.whatsapp-open path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 33px;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: scale(0.92);
    transform-origin: bottom right;
  }

  to {
    opacity: 1;
    transform: scale(1);
    transform-origin: bottom right;
  }
}

@media (max-width: 991px) {
  .hero-bio {
    font-size: 18px;
  }

  .card-cta-inner {
    grid-template-columns: 1fr;
  }

  .card-cta-copy {
    align-items: center;
    padding: 70px 20px 15px;
    text-align: center;
  }

  .business-card-link img {
    width: 420px;
  }
}

@media (max-width: 767px) {
  .hero-inner {
    padding-inline: 10px;
  }

  .contact-strip {
    padding: 20px;
  }

  .contact-grid {
    min-height: 350px;
    grid-template-columns: 1fr;
    grid-template-rows: 110.25px 110.25px 129.5px;
  }

  .contact-item {
    min-height: 0;
    align-items: center;
    padding: 14px 10px;
    text-align: center;
  }

  .contact-item + .contact-item {
    border-top: 2px solid var(--charcoal);
    border-left: 0;
  }

  .contact-item:first-child {
    border-top: 2px solid var(--charcoal);
  }

  .contact-item--hours div {
    text-align: center;
  }
}

@media (max-width: 479px) {
  .hero-inner {
    padding-top: 30px;
    padding-bottom: 31px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .hero-bio {
    max-width: 315px;
    font-size: 16px;
  }

  .card-cta {
    min-height: 519px;
  }

  .card-cta-inner {
    min-height: 519px;
  }

  .card-cta-copy {
    padding-top: 80px;
  }

  .card-cta h2 {
    font-size: 34px;
  }

  .card-cta p {
    max-width: 340px;
  }

  .business-card-link {
    align-items: flex-start;
    min-height: 320px;
    padding-top: 25px;
  }

  .business-card-link img {
    width: 330px;
  }

  .contact-card-shell {
    padding-inline: 10px;
  }

  .sweet-contact-card h1 {
    font-size: 52px;
  }

  .card-subtitle {
    font-size: 26px;
  }

  .whatsapp-widget {
    right: 6px;
    bottom: 6px;
  }

  .whatsapp-dialog {
    width: calc(100vw - 12px);
    border-radius: 30px;
  }

  .whatsapp-header {
    height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
