:root {
  --pink: #ff69b4;
  --pink-deep: #e84f9c;
  --pink-soft: #ffe0ef;
  --pink-wash: #fff5fa;
  --purple: #7b3fa0;
  --purple-soft: rgba(123, 63, 160, 0.12);
  --orange: #ff681d;
  --orange-soft: #ffe8dc;
  --orange-wash: rgba(255, 104, 29, 0.06);
  --orange-line: rgba(255, 104, 29, 0.28);
  --ink: #1a1a1a;
  --muted: #5a5a5a;
  --line: #f3c2d8;
  --white: #ffffff;
  --shadow: 0 10px 28px rgba(255, 105, 180, 0.18);
  --shadow-orange: 0 6px 16px rgba(255, 104, 29, 0.1);
  --radius: 1.25rem;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
  --max: min(1480px, 94vw);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  background: var(--white);
  position: relative;
}

.paw-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.paw {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  display: block;
  background-color: var(--pink);
  opacity: var(--o);
  transform: translate3d(0, 0, 0) rotate(var(--r));
  will-change: transform;
  -webkit-mask-image: url("../assets/paw.png");
  mask-image: url("../assets/paw.png");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.paw:nth-child(3n) {
  background-color: var(--purple);
}

.paw:nth-child(4n) {
  background-color: var(--pink-deep);
}

.site-header {
  z-index: 50;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .paw {
    will-change: auto;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--pink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
  box-shadow: inset 0 -1px 0 var(--orange-line);
}

.header-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 6.75rem;
}

.brand {
  position: relative;
  z-index: 2;
}

.brand-logo {
  width: 128px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  transform: scale(1.05) rotate(-3deg);
}

.brand-name {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  margin: 0;
  width: max-content;
  max-width: none;
  white-space: nowrap;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 3.2vw, 2.65rem);
  letter-spacing: -0.02em;
  color: #111;
  pointer-events: none;
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.btn-portal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--pink-deep);
  background: var(--white);
  border: 1.5px solid var(--orange-line);
  box-shadow: none;
  white-space: nowrap;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-portal:hover,
.btn-portal:focus-visible {
  background: var(--pink-wash);
  border-color: rgba(255, 104, 29, 0.45);
  color: var(--purple);
  transform: translateY(-1px);
  box-shadow: none;
}

.social-nav {
  display: flex;
  gap: 0.55rem;
}

.social-link {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  background: transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-link.facebook,
.social-link.instagram {
  background: transparent;
}

.social-link.instagram {
  border-radius: 0.7rem;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.top-feed {
  max-width: var(--max);
  margin: 0.75rem auto 0;
  padding: 0.5rem 0.5rem 0;
}

.hero {
  max-width: min(62rem, 94vw);
  margin: 0 auto;
  padding: clamp(0.65rem, 1.5vw, 1.1rem) 1rem 2.5rem;
}

.hero-centered {
  text-align: center;
}

.hero-centered .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1,
.section-head h2,
.about h2,
.alacarte h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
}

.lede {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  max-width: min(58rem, 92vw);
  line-height: 1.45;
}

.promo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.05rem 2rem;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(255, 105, 180, 0.16);
  margin-bottom: 1.15rem;
  border: 1.5px solid var(--pink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.promo-pill strong {
  color: var(--ink);
}

.promo-pill:hover,
.promo-pill:focus-visible {
  transform: translateY(-2px);
  background: #ffd0e5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.hero-actions .btn-primary {
  min-height: 4rem;
  padding: 1.05rem 3.1rem;
  font-size: clamp(1.25rem, 2.2vw, 1.45rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--font-display);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--pink-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--orange-line);
  color: var(--pink-deep);
  transform: translateY(-2px);
}

.gallery,
.services,
.reviews {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1rem 1rem;
}

.section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 1.75rem;
}

.section-head h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.section-head h2::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 3px;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--purple) 75%, var(--orange-line));
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.ig-live {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 0.75rem;
}

.ig-live behold-widget {
  display: block;
  width: 100%;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  background: var(--white);
  box-shadow: inset 0 2px 0 var(--orange-line);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.service:hover {
  border-color: var(--orange-line);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service h3,
.review cite {
  font-family: var(--font-display);
}

.service h3 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
}

.price {
  margin: 0 0 0.85rem;
  color: var(--pink-deep);
  font-weight: 700;
  display: inline-block;
  border-bottom: 2px solid var(--orange-line);
  padding-bottom: 0.1rem;
}

.service p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.alacarte {
  margin-top: 1.75rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
  background: var(--pink-wash);
  border: 1px solid var(--line);
  box-shadow: inset 2px 0 0 var(--orange-line);
}

.alacarte h3 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
}

.alacarte ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.alacarte li {
  display: grid;
  gap: 0.2rem;
}

.alacarte span {
  color: var(--muted);
}

.about {
  max-width: var(--max);
  margin: 2rem auto;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.75rem;
  align-items: center;
}

.about h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
}

.about-copy > p {
  color: var(--muted);
}

.about-list {
  margin: 1.2rem 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.about-list li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 600;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 0 2px var(--orange-line);
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review {
  margin: 0;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: inset 2px 0 0 var(--orange-line);
}

.stars {
  margin: 0 0 0.65rem;
  color: var(--pink);
  letter-spacing: 0.08em;
}

.review-text {
  margin: 0 0 1rem;
  color: var(--muted);
}

.review cite {
  font-style: normal;
  font-weight: 700;
}

.reviews-cta {
  margin-top: 1.5rem;
}

.site-footer {
  margin-top: 2.5rem;
  background: #1f1f1f;
  color: #f5f5f5;
  padding: 2.5rem 1.25rem 1.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  max-width: none;
}

.site-footer > * {
  max-width: none;
}

.footer-brand,
.footer-col,
.copyright {
  max-width: var(--max);
}

.footer-brand img {
  width: 56px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  background: var(--white);
  box-shadow: 0 0 0 2px rgba(255, 104, 29, 0.35);
}

.footer-brand p,
.footer-col p {
  margin: 0.35rem 0;
  color: #d0d0d0;
}

.footer-col h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
}

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

.footer-social {
  margin-top: 0.35rem;
}

.copyright {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 var(--orange-line);
  color: #a8a8a8;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .about {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: 0;
  }

  .brand-name {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    flex: 1;
    text-align: left;
    font-size: clamp(1rem, 4.2vw, 1.35rem);
    white-space: nowrap;
    pointer-events: auto;
  }

  .brand-logo {
    width: 96px;
  }

  .header-actions {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .btn-portal {
    font-size: 1rem;
    min-height: 2.35rem;
    padding: 0.45rem 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
