:root {
  --ink: #171a2c;
  --ink-soft: #52576a;
  --muted: #7c8192;
  --surface: #ffffff;
  --background: #f6f5f1;
  --background-soft: #fbfaf7;
  --line: #e7e5df;
  --brand: #8d5cf6;
  --brand-contrast: #ffffff;
  --brand-dark: color-mix(in srgb, var(--brand) 58%, #111426);
  --brand-soft: color-mix(in srgb, var(--brand) 10%, #ffffff);
  --brand-pale: color-mix(in srgb, var(--brand) 5%, #ffffff);
  --shadow-xs: 0 8px 22px rgba(19, 22, 41, 0.06);
  --shadow-sm: 0 18px 48px rgba(19, 22, 41, 0.09);
  --shadow-md: 0 32px 80px rgba(19, 22, 41, 0.16);
  --site-shell: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--background);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

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

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

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

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 48%, transparent);
  outline-offset: 4px;
}

::selection {
  color: var(--brand-contrast);
  background: var(--brand);
}

.site-shell {
  width: min(calc(100% - 64px), var(--site-shell));
  margin-inline: auto;
}

.site-state {
  display: grid;
  min-height: 100vh;
  align-content: center;
  justify-items: center;
  gap: 15px;
  padding: 32px;
  color: var(--ink-soft);
  background:
    radial-gradient(circle at 15% 15%, color-mix(in srgb, var(--brand) 13%, transparent), transparent 34%),
    radial-gradient(circle at 85% 82%, color-mix(in srgb, var(--brand) 8%, transparent), transparent 28%),
    var(--background);
  text-align: center;
}

.site-state--message > span {
  font-size: 3rem;
}

.site-state--message h1 {
  max-width: 760px;
  margin: 4px 0 0;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.site-state--message p {
  max-width: 560px;
  margin: 2px 0 14px;
}

.site-loader {
  width: 50px;
  height: 50px;
  border: 4px solid #e0ded8;
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: site-spin 0.8s linear infinite;
}

@keyframes site-spin {
  to { transform: rotate(360deg); }
}

.business-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(225, 223, 216, 0.72);
  background: rgba(250, 249, 246, 0.88);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  backdrop-filter: blur(20px) saturate(145%);
}

.business-header__inner {
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.business-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.business-brand__logo,
.footer-logo {
  display: grid;
  flex: none;
  overflow: hidden;
  place-items: center;
  color: var(--brand-contrast);
  background: var(--brand);
  font-family: "Outfit", sans-serif;
  font-weight: 800;
}

.business-brand__logo {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 26, 44, 0.08);
  border-radius: 14px;
  box-shadow: var(--shadow-xs);
  font-size: 0.82rem;
}

.business-brand__logo img,
.footer-logo img {
  width: 100%;
  height: 100%;
  background: #fff;
  object-fit: contain;
}

.business-brand strong {
  overflow: hidden;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.business-header nav a {
  position: relative;
  padding-block: 8px;
  transition: color 180ms ease;
}

.business-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--brand);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 180ms ease, transform 180ms ease;
}

.business-header nav a:hover {
  color: var(--ink);
}

.business-header nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.business-header__inner > .site-button {
  justify-self: end;
}

.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.site-button::after {
  content: "→";
  font-size: 1rem;
  transition: transform 180ms ease;
}

button.site-button::after,
.site-button--google::after,
.load-more-reviews::after {
  display: none;
}

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

.site-button:hover::after {
  transform: translateX(3px);
}

.site-button--small {
  min-height: 42px;
  padding-inline: 17px;
  border-radius: 13px;
  font-size: 0.78rem;
}

.site-button--primary {
  color: var(--brand-contrast);
  background: var(--brand);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--brand) 25%, transparent);
}

.site-button--primary:hover {
  box-shadow: 0 18px 38px color-mix(in srgb, var(--brand) 32%, transparent);
}

.site-button--secondary {
  border-color: color-mix(in srgb, var(--brand) 24%, var(--line));
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.82);
}

.site-button--secondary:hover {
  border-color: color-mix(in srgb, var(--brand) 46%, var(--line));
  background: #fff;
}

.site-button--google {
  border-color: #dfe0e6;
  color: var(--ink-soft);
  background: #fff;
}

.business-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(62px, 7vw, 100px) clamp(78px, 9vw, 130px);
  isolation: isolate;
  background: var(--background-soft);
}

.business-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 26, 44, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 44, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.business-hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  filter: blur(10px);
  pointer-events: none;
}

.business-hero__glow--one {
  top: -170px;
  right: -110px;
  width: 520px;
  height: 520px;
}

.business-hero__glow--two {
  bottom: -210px;
  left: -170px;
  width: 450px;
  height: 450px;
  opacity: 0.55;
}

.business-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(54px, 7vw, 104px);
}

.business-hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-identity {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 25px;
}

.hero-logo {
  display: grid;
  width: 88px;
  height: 88px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(23, 26, 44, 0.08);
  border-radius: 25px;
  color: var(--brand-contrast);
  background: var(--brand);
  box-shadow: 0 17px 42px rgba(19, 22, 41, 0.13);
  font-family: "Outfit", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  background: #fff;
  object-fit: contain;
}

.hero-category {
  display: inline-flex;
  align-items: center;
  max-width: min(290px, 60vw);
  gap: 8px;
  padding: 8px 13px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand) 24%, var(--line));
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.075em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-category::before {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--brand) 13%, transparent);
  content: "";
}

.business-hero h1 {
  max-width: 680px;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: clamp(3.4rem, 6.4vw, 6rem);
  letter-spacing: -0.058em;
  line-height: 0.93;
  text-wrap: balance;
}

.business-hero__copy > p {
  max-width: 650px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 31px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 37px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.hero-rating,
.hero-fact {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.hero-fact__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: none;
  place-items: center;
  border-radius: 12px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 1rem;
}

.hero-fact__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-rating small,
.hero-fact small {
  display: block;
  margin-bottom: 1px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
}

.hero-rating strong,
.hero-fact strong {
  display: block;
  max-width: 190px;
  overflow: hidden;
  color: var(--ink);
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.business-hero__visual {
  position: relative;
  min-width: 0;
  padding: 0 23px 30px 0;
}

.hero-cover {
  position: relative;
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  border: 9px solid rgba(255, 255, 255, 0.84);
  border-radius: 38px;
  background: var(--brand-soft);
  box-shadow: var(--shadow-md);
  transform: rotate(1.2deg);
}

.hero-cover::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  content: "";
  pointer-events: none;
}

.hero-cover__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: color-mix(in srgb, var(--brand) 48%, #ffffff);
  background:
    radial-gradient(circle at 77% 23%, rgba(255, 255, 255, 0.55) 0 7%, transparent 7.4%),
    radial-gradient(circle at 20% 78%, rgba(255, 255, 255, 0.38) 0 14%, transparent 14.4%),
    linear-gradient(145deg, var(--brand), color-mix(in srgb, var(--brand) 38%, #ffffff));
  transition: opacity 250ms ease;
}

.hero-cover__placeholder::before {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
}

.hero-cover__placeholder span {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-size: clamp(6rem, 14vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  opacity: 0.55;
}

.business-hero__visual.has-cover .hero-cover__placeholder {
  opacity: 0;
}

.business-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cover__shade {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(10, 12, 25, 0.72));
  pointer-events: none;
}

.hero-cover__label {
  position: absolute;
  right: 36px;
  bottom: 34px;
  left: 36px;
  color: #fff;
}

.hero-cover__label span {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-cover__label strong {
  display: block;
  overflow: hidden;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-accent-card {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  max-width: 240px;
  gap: 12px;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 19px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.hero-accent-card span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: none;
  place-items: center;
  border-radius: 12px;
  color: var(--brand-contrast);
  background: var(--brand);
}

.hero-accent-card strong {
  font-family: "Outfit", sans-serif;
  font-size: 0.78rem;
  line-height: 1.35;
}

.site-section {
  padding-block: clamp(86px, 9vw, 130px);
}

.story-section {
  position: relative;
  background: #fff;
}

.story-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 64px), var(--site-shell));
  border-top: 1px solid var(--line);
  content: "";
  transform: translateX(-50%);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  align-items: start;
  gap: clamp(55px, 9vw, 125px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--brand-dark);
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker > span {
  width: 30px;
  border-top: 2px solid var(--brand);
}

.story-heading h2,
.site-section-heading h2,
.contact-heading h2,
.reviews-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  letter-spacing: -0.052em;
  line-height: 1;
  text-wrap: balance;
}

.story-heading h2 {
  max-width: 520px;
}

.story-copy {
  margin: 3px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  line-height: 1.95;
  white-space: pre-line;
}

.story-highlight {
  position: relative;
  margin-top: 36px;
  overflow: hidden;
  padding: 32px 34px 30px 94px;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: 25px;
  background:
    linear-gradient(135deg, var(--brand-pale), var(--brand-soft));
}

.story-highlight::after {
  position: absolute;
  right: -25px;
  bottom: -40px;
  width: 130px;
  height: 130px;
  border: 24px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  content: "";
}

.story-highlight__mark {
  position: absolute;
  top: 17px;
  left: 27px;
  color: var(--brand);
  font-family: Georgia, serif;
  font-size: 4.7rem;
  line-height: 1;
}

.story-highlight strong {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -0.02em;
  line-height: 1.42;
}

.story-highlight small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: var(--brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.services-section {
  background: var(--background);
}

.site-section-heading,
.contact-heading,
.reviews-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
}

.site-section-heading > div > span,
.contact-heading > div > span,
.reviews-heading > div:first-child > span,
.contact-kicker {
  display: block;
  margin-bottom: 11px;
  color: var(--brand-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-section-heading > p,
.contact-heading > p {
  max-width: 390px;
  margin: 0 0 5px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  padding: 29px 27px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-xs);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--brand) 30%, var(--line));
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.service-card::after {
  position: absolute;
  right: -42px;
  bottom: -48px;
  width: 128px;
  height: 128px;
  border: 21px solid var(--brand-soft);
  border-radius: 50%;
  content: "";
  transition: transform 250ms ease;
}

.service-card:hover::after {
  transform: scale(1.15);
}

.service-card > span {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 14px;
  color: var(--brand-contrast);
  background: var(--brand);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--brand) 22%, transparent);
  font-size: 0.72rem;
  font-weight: 800;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.32rem;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.72;
}

.content-sections {
  padding-block: clamp(85px, 10vw, 145px);
  background: #fff;
}

.content-sections:empty {
  display: none;
}

.feature-section + .feature-section {
  margin-top: clamp(35px, 5vw, 64px);
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  align-items: stretch;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand) 14%, var(--line));
  border-radius: 34px;
  background: var(--brand-pale);
  box-shadow: var(--shadow-sm);
}

.feature-section.is-reversed .feature-image {
  order: 2;
}

.feature-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.55) 0 8%, transparent 8.5%),
    linear-gradient(145deg, var(--brand), color-mix(in srgb, var(--brand) 35%, #fff));
}

.feature-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 55%, rgba(12, 14, 27, 0.13));
  content: "";
  pointer-events: none;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feature-card:hover .feature-image img {
  transform: scale(1.025);
}

.feature-copy {
  display: flex;
  max-width: 650px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 88px);
}

.feature-copy > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-dark);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.feature-copy > span::before {
  width: 24px;
  border-top: 2px solid var(--brand);
  content: "";
}

.feature-copy h2 {
  margin: 15px 0 21px;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1;
  text-wrap: balance;
}

.feature-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.9;
  white-space: pre-line;
}

.feature-card:not(.has-image) {
  grid-template-columns: 1fr;
  min-height: 0;
  background:
    radial-gradient(circle at 88% 15%, var(--brand-soft) 0 12%, transparent 12.4%),
    linear-gradient(135deg, var(--brand-pale), #fff);
}

.feature-card:not(.has-image) .feature-copy {
  max-width: 900px;
  padding: clamp(55px, 8vw, 95px);
}

.contact-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #171927;
}

.contact-section::before {
  position: absolute;
  top: -250px;
  right: -170px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 20%, transparent);
  content: "";
  filter: blur(12px);
}

.contact-section > .site-shell {
  position: relative;
  z-index: 1;
}

.contact-heading h2 {
  color: #fff;
}

.contact-heading > div > span {
  color: color-mix(in srgb, var(--brand) 78%, #fff);
}

.contact-heading > p {
  color: rgba(255, 255, 255, 0.62);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(350px, 0.96fr);
  align-items: stretch;
  gap: 22px;
  margin-top: 50px;
}

.contact-layout.is-single {
  grid-template-columns: 1fr;
}

.contact-copy {
  position: relative;
  display: flex;
  min-height: 520px;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 78px);
  border: 1px solid color-mix(in srgb, var(--brand-contrast) 16%, transparent);
  border-radius: 31px;
  color: var(--brand-contrast);
  background:
    radial-gradient(circle at 90% 15%, color-mix(in srgb, var(--brand-contrast) 18%, transparent) 0 9%, transparent 9.5%),
    var(--brand);
  box-shadow: 0 28px 74px color-mix(in srgb, var(--brand) 20%, transparent);
}

.contact-copy::after {
  position: absolute;
  right: -80px;
  bottom: -105px;
  width: 260px;
  height: 260px;
  border: 46px solid color-mix(in srgb, var(--brand-contrast) 11%, transparent);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-copy .contact-kicker {
  color: color-mix(in srgb, var(--brand-contrast) 74%, transparent);
}

.contact-copy h3 {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0;
  color: var(--brand-contrast);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.contact-copy > p {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 22px 0 28px;
  color: color-mix(in srgb, var(--brand-contrast) 78%, transparent);
  font-size: 0.95rem;
}

.contact-buttons,
.social-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-buttons .site-button {
  border-color: color-mix(in srgb, var(--brand-contrast) 25%, transparent);
  color: var(--ink);
  background: #fff;
  box-shadow: none;
}

.contact-buttons .site-button:hover {
  box-shadow: 0 14px 30px color-mix(in srgb, #000 14%, transparent);
}

.social-block {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--brand-contrast) 20%, transparent);
}

.social-block > small {
  display: block;
  margin-bottom: 11px;
  color: color-mix(in srgb, var(--brand-contrast) 72%, transparent);
  font-size: 0.69rem;
  font-weight: 700;
}

.social-links a {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--brand-contrast) 25%, transparent);
  border-radius: 13px;
  color: var(--brand-contrast);
  background: color-mix(in srgb, var(--brand-contrast) 10%, transparent);
  transition: background 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  background: color-mix(in srgb, var(--brand-contrast) 18%, transparent);
  transform: translateY(-2px);
}

.social-links svg {
  width: 19px;
  height: 19px;
}

.contact-side {
  display: grid;
  align-content: stretch;
  grid-template-rows: auto minmax(260px, 1fr);
  gap: 22px;
}

.contact-side.has-one-card {
  grid-template-rows: minmax(0, 1fr);
}

.contact-side.has-one-card > * {
  height: 100%;
}

.hours-card,
.map-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 27px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 24px 54px rgba(5, 7, 18, 0.18);
}

.hours-card {
  padding: 28px;
}

.contact-card__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 23px;
}

.contact-card__icon {
  display: grid;
  width: 45px;
  height: 45px;
  flex: none;
  place-items: center;
  border-radius: 14px;
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.contact-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-card__heading > div > span {
  display: block;
  color: var(--brand-dark);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card__heading h3 {
  margin: 1px 0 0;
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

.hours-list {
  display: grid;
  gap: 0;
}

.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid #efeee9;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.hours-row:last-child {
  border-bottom: 0;
}

.hours-row strong {
  color: var(--ink);
}

.hours-row.is-today {
  margin-inline: -10px;
  padding-inline: 10px;
  border-color: transparent;
  border-radius: 10px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-weight: 800;
}

.hours-row em {
  margin-left: 6px;
  color: var(--brand-dark);
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.map-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
}

.map-card iframe {
  width: 100%;
  min-height: 230px;
  flex: 1;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.map-card > div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 17px 19px;
}

.map-pin {
  color: var(--brand);
  font-size: 0.65rem;
}

.map-card strong {
  overflow: hidden;
  font-size: 0.7rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-card a {
  color: var(--brand-dark);
  font-size: 0.67rem;
  font-weight: 800;
  white-space: nowrap;
}

.reviews-section {
  background: var(--background-soft);
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.rating-summary > strong {
  font-family: "Outfit", sans-serif;
  font-size: 3.25rem;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.rating-summary span {
  display: block;
  color: #f4a523;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.rating-summary small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(350px, 0.84fr);
  align-items: start;
  gap: 28px;
  margin-top: 48px;
}

.reviews-feed {
  min-width: 0;
}

.review-list {
  display: grid;
  gap: 14px;
}

.review-card {
  padding: 25px 27px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.review-card__author {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.review-card__avatar {
  display: grid;
  width: 43px;
  height: 43px;
  flex: none;
  place-items: center;
  border-radius: 14px;
  color: var(--brand-contrast);
  background: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
}

.review-card strong,
.review-card small {
  display: block;
}

.review-card strong {
  overflow: hidden;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card small {
  color: var(--muted);
  font-size: 0.64rem;
}

.review-card__stars {
  flex: none;
  color: #f4a523;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.review-card > p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.8;
  white-space: pre-line;
}

.reviews-empty {
  padding: 58px 25px;
  border: 1px dashed color-mix(in srgb, var(--brand) 24%, var(--line));
  border-radius: 24px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.54);
  text-align: center;
}

.reviews-empty > span {
  font-size: 2.15rem;
}

.reviews-empty h3 {
  margin: 10px 0 4px;
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: 1.3rem;
}

.reviews-empty p {
  margin: 0;
  font-size: 0.76rem;
}

.load-more-reviews {
  width: 100%;
  margin-top: 13px;
}

.review-form {
  position: sticky;
  top: 101px;
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--brand) 17%, var(--line));
  border-radius: 27px;
  background:
    radial-gradient(circle at 100% 0, var(--brand-soft) 0 23%, transparent 23.5%),
    #fff;
  box-shadow: var(--shadow-sm);
}

.review-form > span {
  color: var(--brand-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-form h3 {
  margin: 5px 0 7px;
  font-family: "Outfit", sans-serif;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.review-form > p {
  max-width: 400px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.71rem;
}

.rating-picker {
  display: flex;
  gap: 4px;
  margin-bottom: 19px;
}

.rating-picker button {
  padding: 0;
  border: 0;
  color: #d8d8dc;
  background: transparent;
  cursor: pointer;
  font-size: 1.85rem;
  line-height: 1;
  transition: color 150ms ease, transform 150ms ease;
}

.rating-picker button:hover {
  transform: scale(1.08);
}

.rating-picker button.is-active {
  color: #f4a523;
}

.review-form label {
  display: block;
  margin-top: 13px;
}

.review-form label > span {
  display: block;
  margin: 0 0 6px 2px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid #dddee4;
  border-radius: 13px;
  background: #fff;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.review-form input {
  height: 48px;
  padding: 0 13px;
}

.review-form textarea {
  min-height: 118px;
  padding: 12px 13px;
  resize: vertical;
}

.review-form input:focus,
.review-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.review-form > .site-button {
  width: 100%;
  margin-top: 16px;
}

.review-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.review-message {
  margin-top: 13px;
  padding: 11px 12px;
  border-radius: 12px;
  color: #16805c;
  background: #eaf9f3;
  font-size: 0.68rem;
  font-weight: 700;
}

.review-message.is-error {
  color: #a92d51;
  background: #ffedf3;
}

.business-footer {
  padding-block: 62px 28px;
  color: #aeb2c0;
  background: #10121d;
}

.business-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding-bottom: 42px;
}

.footer-brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 15px;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 17px;
  font-size: 0.9rem;
}

.business-footer strong {
  display: block;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.business-footer p {
  max-width: 540px;
  margin: 4px 0 0;
  font-size: 0.72rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 20px;
  font-size: 0.73rem;
  font-weight: 700;
}

.footer-contact a {
  transition: color 160ms ease;
}

.footer-contact a:hover {
  color: #fff;
}

.business-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.65rem;
}

.made-by {
  color: color-mix(in srgb, var(--brand) 72%, #fff);
  font-weight: 800;
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  min-height: 57px;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fff;
  background: #20b968;
  box-shadow: 0 18px 44px rgba(22, 151, 83, 0.32);
  font-size: 0.76rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 22px 52px rgba(22, 151, 83, 0.4);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
}

.site-toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: min(400px, calc(100% - 48px));
  padding: 14px 18px;
  border-radius: 14px;
  color: #fff;
  background: #171927;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(13px);
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 0.75rem;
  font-weight: 700;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .business-hero__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 52px;
  }

  .business-hero h1 {
    font-size: clamp(3.3rem, 6.7vw, 5.2rem);
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .site-shell {
    width: min(calc(100% - 42px), var(--site-shell));
  }

  .business-header__inner {
    grid-template-columns: 1fr auto;
  }

  .business-header nav {
    display: none;
  }

  .business-hero {
    padding-block: 58px 96px;
  }

  .business-hero__layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .business-hero__copy {
    max-width: 760px;
  }

  .business-hero__visual {
    width: min(100%, 780px);
    justify-self: center;
  }

  .hero-cover {
    aspect-ratio: 1.55 / 1;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-heading h2 {
    max-width: 760px;
  }

  .story-content {
    max-width: 790px;
  }

  .feature-card {
    min-height: 450px;
  }

  .feature-image,
  .feature-image img {
    min-height: 450px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    min-height: 470px;
  }

  .contact-side {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    grid-template-rows: 1fr;
  }

  .contact-side.has-one-card {
    grid-template-columns: 1fr;
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .review-form {
    position: static;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-shell {
    width: min(calc(100% - 30px), var(--site-shell));
  }

  .business-header__inner {
    min-height: 68px;
    gap: 12px;
  }

  .business-brand {
    gap: 9px;
  }

  .business-brand__logo {
    width: 39px;
    height: 39px;
    border-radius: 12px;
  }

  .business-brand strong {
    max-width: 170px;
    font-size: 0.88rem;
  }

  .business-header__inner > .site-button {
    min-height: 39px;
    padding-inline: 13px;
    font-size: 0.7rem;
  }

  .business-header__inner > .site-button::after {
    display: none;
  }

  .business-hero {
    padding-block: 43px 78px;
  }

  .hero-identity {
    margin-bottom: 22px;
  }

  .hero-logo {
    width: 74px;
    height: 74px;
    border-radius: 21px;
    font-size: 1.25rem;
  }

  .hero-category {
    font-size: 0.63rem;
  }

  .business-hero h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .business-hero__copy > p {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 27px;
  }

  .hero-actions .site-button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
    margin-top: 30px;
  }

  .hero-rating,
  .hero-fact {
    min-width: 0;
  }

  .hero-rating strong,
  .hero-fact strong {
    max-width: 130px;
  }

  .business-hero__layout {
    gap: 42px;
  }

  .business-hero__visual {
    padding: 0 9px 21px 0;
  }

  .hero-cover {
    aspect-ratio: 1.12 / 1;
    border-width: 6px;
    border-radius: 28px;
  }

  .hero-cover__label {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .hero-accent-card {
    max-width: 205px;
    padding: 13px 15px;
    border-radius: 16px;
  }

  .hero-accent-card span {
    width: 34px;
    height: 34px;
  }

  .hero-accent-card strong {
    font-size: 0.68rem;
  }

  .site-section {
    padding-block: 78px;
  }

  .story-section::before {
    width: calc(100% - 30px);
  }

  .story-layout {
    gap: 30px;
  }

  .story-heading h2,
  .site-section-heading h2,
  .contact-heading h2,
  .reviews-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .story-highlight {
    padding: 30px 25px 27px 72px;
  }

  .story-highlight__mark {
    left: 20px;
    font-size: 4rem;
  }

  .site-section-heading,
  .contact-heading,
  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .service-card {
    min-height: 220px;
  }

  .content-sections {
    padding-block: 75px;
  }

  .feature-section + .feature-section {
    margin-top: 28px;
  }

  .feature-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 27px;
  }

  .feature-section.is-reversed .feature-image {
    order: 0;
  }

  .feature-image,
  .feature-image img {
    min-height: 0;
    height: 310px;
  }

  .feature-copy {
    max-width: none;
    padding: 44px 27px 50px;
  }

  .feature-copy h2 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .contact-layout {
    margin-top: 36px;
  }

  .contact-copy {
    min-height: 480px;
    padding: 38px 25px;
    border-radius: 26px;
  }

  .contact-copy h3 {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .contact-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-buttons .site-button {
    width: 100%;
  }

  .contact-side {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .hours-card,
  .map-card {
    border-radius: 23px;
  }

  .map-card > div {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .map-card a {
    grid-column: 2;
  }

  .rating-summary {
    align-self: stretch;
    justify-content: flex-start;
  }

  .reviews-layout {
    margin-top: 36px;
  }

  .review-form {
    padding: 25px;
    border-radius: 23px;
  }

  .business-footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .business-brand strong {
    max-width: 118px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-rating strong,
  .hero-fact strong {
    max-width: 230px;
  }

  .hero-cover {
    aspect-ratio: 1 / 1.06;
  }

  .hero-accent-card {
    display: none;
  }

  .business-hero__visual {
    padding: 0;
  }

  .story-highlight {
    padding: 67px 22px 25px;
  }

  .story-highlight__mark {
    top: 12px;
    left: 20px;
  }

  .review-card__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .rating-summary > strong {
    font-size: 2.85rem;
  }

  .business-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 57px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

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

  .site-loader {
    animation-duration: 1.5s;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
