:root {
  --bg: #f5efff;
  --surface: #ffffff;
  --surface-soft: #efe4ff;
  --teal: #12b8b0;
  --teal-deep: #6d2bc2;
  --orange: #ff2f92;
  --orange-soft: #ffd1ec;
  --text: #351a52;
  --muted: #705d8a;
  --line: rgba(109, 43, 194, 0.16);
  --shadow: 0 22px 60px rgba(88, 28, 135, 0.14);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.page-shell {
  overflow: hidden;
}

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

.ambient-sparkle {
  position: absolute;
  opacity: 0.25;
  line-height: 1;
  user-select: none;
  color: var(--orange);
  animation: ambient-drift 18s linear infinite;
}

.ambient-sparkle--heart {
  color: var(--orange);
}

.ambient-sparkle--star {
  color: var(--orange);
}

.ambient-sparkle--1 {
  top: 9%;
  left: 8%;
  font-size: 0.95rem;
  animation-duration: 20s;
}

.ambient-sparkle--2 {
  top: 16%;
  right: 14%;
  font-size: 0.85rem;
  animation-delay: -4s;
  animation-duration: 17s;
}

.ambient-sparkle--3 {
  top: 42%;
  left: 6%;
  font-size: 0.8rem;
  animation-delay: -7s;
  animation-duration: 22s;
}

.ambient-sparkle--4 {
  top: 58%;
  right: 10%;
  font-size: 1rem;
  animation-delay: -10s;
  animation-duration: 19s;
}

.ambient-sparkle--5 {
  bottom: 18%;
  left: 18%;
  font-size: 0.75rem;
  animation-delay: -12s;
  animation-duration: 21s;
}

.ambient-sparkle--6 {
  bottom: 12%;
  right: 22%;
  font-size: 0.9rem;
  animation-delay: -6s;
  animation-duration: 16s;
}

.ambient-sparkle--7 {
  top: 27%;
  right: 28%;
  font-size: 0.82rem;
  animation-delay: -9s;
  animation-duration: 23s;
}

.ambient-sparkle--8 {
  top: 71%;
  left: 10%;
  font-size: 0.88rem;
  animation-delay: -14s;
  animation-duration: 18s;
}

.ambient-sparkle--9 {
  top: 34%;
  left: 34%;
  font-size: 0.7rem;
  animation-delay: -5s;
  animation-duration: 20s;
}

.ambient-sparkle--10 {
  bottom: 30%;
  right: 6%;
  font-size: 0.94rem;
  animation-delay: -11s;
  animation-duration: 24s;
}

.ambient-sparkle--11 {
  top: 12%;
  left: 46%;
  font-size: 0.78rem;
  animation-delay: -3s;
  animation-duration: 18s;
}

.ambient-sparkle--12 {
  top: 49%;
  right: 33%;
  font-size: 0.86rem;
  animation-delay: -15s;
  animation-duration: 22s;
}

.ambient-sparkle--13 {
  bottom: 24%;
  left: 42%;
  font-size: 0.82rem;
  animation-delay: -8s;
  animation-duration: 19s;
}

.ambient-sparkle--14 {
  bottom: 8%;
  right: 38%;
  font-size: 0.92rem;
  animation-delay: -13s;
  animation-duration: 21s;
}

@keyframes ambient-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate3d(10px, -12px, 0) scale(1.04) rotate(6deg);
  }

  50% {
    transform: translate3d(-12px, -24px, 0) scale(1.08) rotate(-5deg);
  }

  75% {
    transform: translate3d(14px, -10px, 0) scale(1.03) rotate(4deg);
  }
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 255, 0.92);
  border-bottom: 1px solid rgba(109, 43, 194, 0.1);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-mark__logo {
  width: auto;
  height: 4.4rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 10px 22px rgba(88, 28, 135, 0.14));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(109, 43, 194, 0.08);
  box-shadow: inset 0 0 0 1px rgba(109, 43, 194, 0.14);
  color: var(--teal-deep);
  cursor: pointer;
}

.nav-toggle span {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span + span {
  margin-top: 0.22rem;
}

.site-header.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(109, 43, 194, 0.08);
  box-shadow: inset 0 0 0 1px rgba(109, 43, 194, 0.14);
  color: var(--teal-deep);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.social-icon-link:hover {
  transform: translateY(-2px);
  background: rgba(109, 43, 194, 0.16);
  color: var(--teal);
}

.social-icon-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  font-size: 0.98rem;
  line-height: 1;
}

.button--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 47, 146, 0.28);
}

.button--primary:hover {
  background: #e11d7d;
}

.button--secondary {
  background: linear-gradient(145deg, rgba(109, 43, 194, 0.14), rgba(18, 184, 176, 0.16));
  color: var(--teal-deep);
  box-shadow:
    inset 0 0 0 1px rgba(109, 43, 194, 0.18),
    0 12px 24px rgba(88, 28, 135, 0.08);
}

.button--secondary:hover {
  background: linear-gradient(145deg, rgba(109, 43, 194, 0.22), rgba(18, 184, 176, 0.24));
}

.hero {
  position: relative;
  padding: 4.75rem 0 7rem;
  isolation: isolate;
}

.hero::before,
.section--paws::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
}

.hero::before {
  opacity: 0.58;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(109, 43, 194, 0.1);
  color: var(--teal-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.about__card h2,
.service-area h2,
.cta-card h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 1.05;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5vw, 5rem);
}

.hero__lead,
.section-heading p,
.info-card p,
.price-card p,
.about__card p,
.service-area p,
.cta-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero__lead {
  max-width: 58ch;
  margin: 1.4rem 0 0;
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
  margin-bottom: 1.75rem;
}

.hero-card {
  position: relative;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto auto 1.25rem -1rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: rgba(18, 184, 176, 0.22);
  filter: blur(4px);
}

.hero-card__photo {
  margin: 0;
}

.hero-card__image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px rgba(109, 43, 194, 0.08);
}

.photo-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 220px;
  padding: 1rem;
  border-radius: 30px;
  background: #f7f1ff;
  border: 1px dashed rgba(109, 43, 194, 0.22);
  color: var(--teal-deep);
  text-align: center;
  font-weight: 700;
}

.photo-placeholder--large {
  min-height: 420px;
}

.photo-placeholder--portrait {
  min-height: 360px;
}

.photo-placeholder--square {
  min-height: 260px;
}

.photo-placeholder--wide {
  min-height: 280px;
}

.photo-placeholder--service {
  min-height: 180px;
  margin-bottom: 1.1rem;
  border-radius: 24px;
  font-size: 0.95rem;
}

.service-card__image {
  width: 100%;
  height: 180px;
  margin-bottom: 1.1rem;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  border: 1px solid rgba(109, 43, 194, 0.12);
}

.photo-placeholder--about {
  min-height: 460px;
  border-radius: var(--radius-xl);
}

.about__image {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(88, 28, 135, 0.08);
  justify-self: end;
  order: 2;
}

.hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  background: var(--surface);
  clip-path: ellipse(68% 100% at 50% 100%);
}

.info-card,
.price-card,
.about__card,
.cta-card,
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(88, 28, 135, 0.08);
}

.section {
  padding: 5.5rem 0;
}

.section--paws {
  position: relative;
  isolation: isolate;
}

.section--paws::before {
  opacity: 0.28;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.about__card h2,
.service-area h2,
.cta-card h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.6rem);
}

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

.info-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  border-radius: var(--radius-md);
}

.info-card h3,
.price-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.24rem;
}

.service-card__actions {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 1.25rem;
}

.service-card__button {
  gap: 0.55rem;
  min-height: 2.9rem;
  padding-inline: 1.1rem;
  font-size: 0.95rem;
}

.service-card__paw {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  transform-origin: 60% 80%;
  animation: paw-wiggle 2.6s ease-in-out infinite;
}

@keyframes paw-wiggle {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }

  10% {
    transform: rotate(-10deg) translateY(-1px);
  }

  20% {
    transform: rotate(10deg) translateY(-1px);
  }

  30% {
    transform: rotate(-7deg) translateY(0);
  }

  40% {
    transform: rotate(7deg) translateY(0);
  }

  50% {
    transform: rotate(0deg) translateY(0);
  }
}

.pricing {
  background: transparent;
}

.pricing__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.pricing__button {
  gap: 0.55rem;
  margin-top: 1.2rem;
  width: fit-content;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.price-card {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
}

.price-card--featured {
  background: var(--surface-soft);
}

.price-card__tag {
  display: inline-flex;
  margin-bottom: 0.9rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(109, 43, 194, 0.14);
  color: #7a23b8;
  font-size: 0.82rem;
  font-weight: 700;
}

.price-card__value {
  margin: 0 0 0.45rem;
  color: var(--teal-deep);
  font-size: 2rem;
  font-weight: 800;
}

.photos {
  background: var(--bg);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.instagram-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  margin-bottom: 1.35rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 50px rgba(88, 28, 135, 0.1);
  text-align: center;
}

.instagram-profile-card__identity {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.instagram-profile-card__avatar {
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow:
    0 0 0 3px rgba(255, 47, 146, 0.6),
    0 0 0 7px rgba(255, 146, 77, 0.28);
}

.instagram-profile-card__text h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2.3vw, 2rem);
  line-height: 1.1;
}

.instagram-profile-card__text p {
  margin: 0.2rem 0 0;
  color: #767676;
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  line-height: 1.2;
}

.instagram-profile-card__stats {
  display: flex;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.instagram-profile-card__stats div {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  gap: 0.12rem;
  min-width: 0;
}

.instagram-profile-card__stats strong {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1;
}

.instagram-profile-card__stats span {
  color: #7c7c7c;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
}

.instagram-profile-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.8rem 1.25rem;
  border-radius: 12px;
  background: #1f95e8;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(31, 149, 232, 0.22);
}

.instagram-profile-card__button:hover {
  background: #1686d4;
}

.instagram-profile-card__button svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.photo-grid--instagram-manual {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.instagram-photo-tile {
  display: block;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 12px 34px rgba(88, 28, 135, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-photo-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(88, 28, 135, 0.14);
}

.gallery-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  border: 1px solid rgba(109, 43, 194, 0.12);
  box-shadow: 0 12px 34px rgba(88, 28, 135, 0.1);
}

.gallery-image--square {
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  box-shadow: none;
  transition: transform 0.35s ease;
}

.instagram-photo-tile:hover .gallery-image--square {
  transform: scale(1.04);
}

.about__layout,
.service-area__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}

.about__card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  order: 1;
}

.about__layout {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.about__card--split {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 460px;
}

.about__card p {
  margin: 1rem 0 0;
}

.service-area {
  background: var(--surface);
}

.service-area__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-content: start;
  margin-top: 1rem;
}

.area-pills span {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--teal-deep);
  font-weight: 700;
}

.service-area__map {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(88, 28, 135, 0.08);
}

.service-area__map iframe {
  display: block;
  width: 100%;
  min-height: 320px;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.35rem 1.5rem;
  border-radius: 24px;
}

.faq-item summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.9rem 0 0;
}

.cta {
  padding-top: 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 36px;
  background: var(--surface-soft);
}

.cta-card__intro {
  max-width: 28rem;
}

.intake-form {
  flex: 1;
  display: grid;
  gap: 1.2rem;
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(109, 43, 194, 0.12);
}

.intake-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--text);
}

.form-field span {
  font-size: 0.92rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(109, 43, 194, 0.16);
  border-radius: 18px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 2px solid rgba(18, 184, 176, 0.24);
  border-color: rgba(18, 184, 176, 0.4);
}

.form-field--full {
  grid-column: 1 / -1;
}

.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(109, 43, 194, 0.08);
}

.chat-widget {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 20;
}

.chat-widget__bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #ff2f92, #6d2bc2);
  border: 1px solid rgba(109, 43, 194, 0.26);
  box-shadow: 0 18px 44px rgba(88, 28, 135, 0.18);
  color: #fff;
  font-size: 1.45rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chat-widget__bubble:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 22px 46px rgba(88, 28, 135, 0.22);
}

.mobile-callbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
  background: rgba(245, 239, 255, 0.96);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-callbar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-callbar__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #ff2f92, #6d2bc2);
  box-shadow: 0 18px 44px rgba(88, 28, 135, 0.2);
  color: #fff;
  font-weight: 800;
}

.mobile-callbar__button span:first-child {
  font-size: 1rem;
  line-height: 1;
}

.mobile-callbar__button span:last-child {
  font-size: 0.96rem;
  line-height: 1;
  white-space: nowrap;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}

.brand-mark--footer {
  margin-bottom: 1rem;
}

.site-footer__copy,
.footer-contact p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 0.75rem;
}

.footer-map {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(109, 43, 194, 0.14);
  box-shadow: 0 12px 28px rgba(88, 28, 135, 0.08);
}

.footer-map iframe {
  display: block;
  width: 100%;
  min-height: 260px;
}

.social-icon-link--footer {
  width: 2.9rem;
  height: 2.9rem;
}

.footer-links a,
.footer-contact a {
  width: fit-content;
  color: var(--text);
  font-weight: 500;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--teal);
}

@media (max-width: 1080px) {
  .hero__grid,
  .pricing__layout,
  .about__layout,
  .service-area__layout {
    grid-template-columns: 1fr;
  }

  .about__image {
    max-width: 420px;
    justify-self: center;
  }

  .card-grid--services,
  .pricing-table,
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-profile-card {
    padding: 1.6rem 1.2rem;
  }

  .hero h1 {
    max-width: 13ch;
  }

  .cta-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-card__intro {
    max-width: none;
  }

  .chat-widget {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    z-index: 80;
    overflow: visible;
  }

  .site-header.is-menu-open {
    z-index: 120;
  }

  .nav-bar {
    position: relative;
    flex-wrap: nowrap;
    gap: 0.6rem;
    z-index: 2;
  }

  .brand-mark {
    gap: 0;
    flex: 0 0 auto;
  }

  .brand-mark__logo {
    height: 3.4rem;
  }

  .header-actions {
    margin-left: auto;
    gap: 0.45rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 0.25rem;
    right: auto;
    min-width: 13rem;
    width: max-content;
    max-width: calc(100vw - 2rem);
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.9rem;
    border-radius: 22px;
    background: #fffaff;
    border: 1px solid rgba(109, 43, 194, 0.2);
    box-shadow: 0 22px 48px rgba(88, 28, 135, 0.22);
    text-align: left;
    z-index: 60;
    isolation: isolate;
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 0.75rem 0.85rem;
    border-radius: 14px;
    background: transparent;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(109, 43, 194, 0.08);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-book-button {
    min-height: 3rem;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
  }

  .header-book-button .button__icon {
    margin-right: 0.35rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .card-grid--services,
  .pricing-table,
  .photo-grid,
  .intake-form__grid {
    grid-template-columns: 1fr;
  }

  .instagram-profile-card {
    align-items: stretch;
    gap: 1rem;
    padding: 1.15rem 0.95rem;
    border-radius: 22px;
    text-align: left;
  }

  .instagram-profile-card__identity {
    align-items: center;
    gap: 0.8rem;
    text-align: left;
  }

  .instagram-profile-card__avatar {
    width: 3.4rem;
    height: 3.4rem;
    box-shadow:
      0 0 0 2px rgba(255, 47, 146, 0.55),
      0 0 0 5px rgba(255, 146, 77, 0.22);
  }

  .instagram-profile-card__text h3 {
    font-size: 1rem;
  }

  .instagram-profile-card__text p {
    font-size: 0.84rem;
  }

  .instagram-profile-card__stats div {
    align-items: flex-start;
  }

  .instagram-profile-card__stats {
    gap: 0.45rem;
    padding-top: 0.1rem;
  }

  .instagram-profile-card__stats strong {
    font-size: 0.98rem;
  }

  .instagram-profile-card__stats span {
    font-size: 0.72rem;
  }

  .instagram-profile-card__button {
    width: 100%;
    max-width: none;
    min-height: 2.8rem;
    font-size: 0.95rem;
  }

  .photo-grid--instagram-manual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .instagram-photo-tile,
  .gallery-image--square {
    border-radius: 20px;
  }

  .section {
    padding: 4rem 0;
  }

  body {
    padding-bottom: 5.8rem;
  }

  .about__image {
    max-width: 340px;
  }

  .mobile-callbar {
    display: block;
  }

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

  .hero__curve {
    height: 70px;
  }

  .hero-card__details {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .section-heading h2,
  .about__card h2,
  .service-area h2,
  .cta-card h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }
}
