:root {
  --bg: #fcf8f2;
  --text: #2f2622;
  --muted: #6f645d;
  --accent: #e35b4c;
  --teal: #009aa4;
  --surface: #ffffff;
  --surface-soft: #f5eee6;
  --hero-bg-image: url("../assets/hero-background.webp");
  --home-hero-top-height: clamp(560px, 72vh, 780px);
  --home-header-bg: rgba(250, 247, 242, 0.22);
  --home-header-border: rgba(215, 204, 189, 0.48);
  --hero-shell-border: rgba(215, 204, 189, 0.82);
  --hero-shell-shadow: 0 10px 26px rgba(57, 45, 37, 0.08);
  --hero-image-overlay: linear-gradient(
    180deg,
    rgba(250, 247, 242, 0.06) 0%,
    rgba(246, 240, 231, 0.16) 44%,
    rgba(248, 243, 235, 0.32) 64%,
    rgba(250, 246, 239, 0.56) 78%,
    rgba(251, 247, 241, 0.76) 90%,
    rgba(252, 248, 242, 0.94) 100%
  );
  --hero-card-bg: linear-gradient(170deg, rgba(250, 247, 242, 0.9), rgba(243, 239, 231, 0.84));
  --hero-card-border: rgba(227, 215, 199, 0.92);
  --hero-trust-divider: rgba(109, 88, 71, 0.22);
  --hero-trust-text: #574a42;
  --hero-trust-star: #d49a40;
  --hero-trust-icon: #8a786b;
  --hero-trust-icon-border: rgba(138, 120, 107, 0.62);
  --box-grad-soft-start: rgba(0, 154, 164, 0.05);
  --box-grad-soft-end: rgba(227, 91, 76, 0.08);
  --box-grad-soft-border: rgba(0, 154, 164, 0.14);
  --box-grad-mid-start: rgba(0, 154, 164, 0.07);
  --box-grad-mid-end: rgba(227, 91, 76, 0.11);
  --box-grad-mid-border: rgba(0, 154, 164, 0.18);
  --box-grad-rich-start: rgba(0, 154, 164, 0.09);
  --box-grad-rich-end: rgba(227, 91, 76, 0.14);
  --box-grad-rich-border: rgba(0, 154, 164, 0.22);
  --box-grad-warm-start: rgba(227, 91, 76, 0.09);
  --box-grad-warm-end: rgba(0, 154, 164, 0.06);
  --box-grad-warm-border: rgba(227, 91, 76, 0.18);
  --home-outline-pill-bg: rgba(255, 255, 255, 0.78);
  --home-outline-pill-border: rgba(63, 45, 32, 0.24);
  --home-outline-pill-shadow: 0 8px 18px rgba(47, 38, 34, 0.08);
  --gift-gradient-start: var(--box-grad-rich-start);
  --gift-gradient-end: var(--box-grad-rich-end);
  --gift-gradient-border: var(--box-grad-rich-border);
  --event-beige: #f7eadb;
  --event-beige-deep: #f1dcc6;
  --event-beige-dark: #e7ccaa;
  --event-cream: #fff7ed;
  --event-brown: #6d5847;
  --event-brown-dark: #3f2d20;
  --event-accent: #c97b63;
  --event-accent-dark: #b0644c;
  --event-border: #e2cfbb;
  --reviews-vagaro-badge: #cb875d;
  --reviews-vagaro-badge-text: #fff7ef;
  --reviews-yelp-icon: #c45339;
  --soft-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  --radius: 20px;
  --max-width: 1180px;
  --mobile-cta-bar-height: 4.4rem;
  --mobile-cta-safe-bottom: env(
    safe-area-max-inset-bottom,
    env(safe-area-inset-bottom, 0px)
  );
  --mobile-cta-browser-gap: 0px;
  /* Typography stays limited to brand, heading, and body roles. */
  --font-logo: "Great Vibes", cursive;
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Source Serif 4", "Georgia", serif;
  --font-ui: var(--font-body);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.home-page {
  background: var(--bg);
  position: relative;
  isolation: isolate;
}

.home-page::before,
.home-page::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--home-hero-top-height);
  z-index: 0;
  pointer-events: none;
}

.home-page::before {
  background-image: var(--hero-bg-image);
  background-size: cover;
  background-position: 28% calc(50% - 50px);
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.95) 72%,
    rgba(0, 0, 0, 0.72) 84%,
    rgba(0, 0, 0, 0.38) 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 58%,
    rgba(0, 0, 0, 0.95) 72%,
    rgba(0, 0, 0, 0.72) 84%,
    rgba(0, 0, 0, 0.38) 93%,
    transparent 100%
  );
}

.home-page::after {
  height: calc(var(--home-hero-top-height) + 140px);
  background: var(--hero-image-overlay);
}

.home-page > * {
  position: relative;
  z-index: 1;
}

.services-page {
  background:
    radial-gradient(circle at top left, rgba(227, 91, 76, 0.09), transparent 34%),
    radial-gradient(circle at top right, rgba(0, 154, 164, 0.06), transparent 28%),
    var(--bg);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1rem 2.4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 32;
  background: var(--bg);
  border-bottom: 1px solid #e8dfd6;
}

.home-page .site-header {
  background: var(--home-header-bg);
  border-bottom: 1px solid var(--home-header-border);
  -webkit-backdrop-filter: blur(6px) saturate(108%);
  backdrop-filter: blur(6px) saturate(108%);
}

.booking-page .site-header {
  position: static;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.25rem;
  padding: 0.45rem 1rem;
}

.logo {
  font-family: var(--font-logo);
  font-size: 1.9rem;
  letter-spacing: 0.04em;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
  font-style: normal;
  font-weight: 400;
  font-synthesis: none;
  transition: none;
}

.logo:hover,
.logo:focus,
.logo:active,
.logo:visited {
  color: var(--text);
  font-family: var(--font-logo);
}

.nav-links {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0.8rem;
  right: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.55rem;
  border-radius: 14px;
  border: 1px solid #e6dbd0;
  background: #fffdf9;
  box-shadow: 0 14px 24px rgba(47, 38, 34, 0.12);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.96rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  contain: paint;
  transition:
    max-height 240ms ease,
    opacity 180ms ease,
    visibility 0s linear 240ms;
}

.nav-links a {
  border-radius: 10px;
  padding: 0.58rem 0.72rem;
  text-align: center;
  opacity: 0;
  transition: opacity 160ms ease;
}

.nav-links a.nav-desktop-only {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a:hover {
    background: #f4ece3;
  }
}

.nav-socials {
  margin-top: 0.45rem;
  padding-top: 0.65rem;
  border-top: 1px solid #ece2d8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: opacity 160ms ease;
}

.nav-links a.nav-social-link {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8b837c;
  background: transparent;
}

.nav-social-link svg {
  width: 1.28rem;
  height: 1.28rem;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.nav-social-link .icon-fill {
  stroke: none;
  fill: currentColor;
}

.nav-social-link:hover {
  color: #6f655d;
  background: #f1e8df;
}

.site-header.menu-open .nav-links {
  max-height: 26rem;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.site-header.menu-open .nav-links a {
  opacity: 1;
}

.site-header.menu-open .nav-links a:nth-child(1) {
  transition-delay: 45ms;
}

.site-header.menu-open .nav-links a:nth-child(2) {
  transition-delay: 75ms;
}

.site-header.menu-open .nav-links a:nth-child(3) {
  transition-delay: 105ms;
}

.site-header.menu-open .nav-links a:nth-child(4) {
  transition-delay: 135ms;
}

.site-header.menu-open .nav-links a:nth-child(5) {
  transition-delay: 165ms;
}

.site-header.menu-open .nav-links a:nth-child(6) {
  transition-delay: 195ms;
}

.site-header.menu-open .nav-links .nav-socials {
  opacity: 1;
  transition-delay: 225ms;
}

.menu-toggle {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  width: 2.55rem;
  height: 2.55rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.45rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

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

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

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

.menu-toggle:focus-visible,
.nav-links a:focus-visible,
.mobile-cta:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #ffffff;
  padding: 0.78rem 1.45rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid var(--accent);
  box-shadow: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    opacity 160ms ease,
    color 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.pill.ghost {
  background: rgba(0, 0, 0, 0.32);
  color: #ffffff;
  border: 1.2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  text-shadow: 0 7px 18px rgba(0, 0, 0, 0.5);
}

.pill.outline {
  background: transparent;
  color: var(--text);
  border: 1px solid #e5dcd3;
  box-shadow: none;
}

.hero .pill.outline {
  color: var(--text);
  border: 1px solid var(--home-outline-pill-border);
  background: var(--home-outline-pill-bg);
  box-shadow: none;
  text-shadow: none;
}

.home-page .section .pill.outline {
  background: var(--home-outline-pill-bg);
  border-color: var(--home-outline-pill-border);
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  .pill:hover {
    transform: translateY(-1px);
    box-shadow: none;
    opacity: 0.95;
  }

  .pill.outline:hover,
  .hero .pill.outline:hover,
  .home-page .section .pill.outline:hover {
    color: var(--accent);
    border-color: var(--accent);
  }
}

.main {
  flex: 1;
}

.about-page .main > .container,
.home-page .main > .container,
.services-page .main > .container,
.reviews-page .main > .container,
.press-page .main > .container {
  padding-top: 0.8rem;
}

.about-page .main > .container > *:first-child,
.home-page .main > .container > *:first-child,
.services-page .main > .container > *:first-child,
.reviews-page .main > .container > *:first-child,
.press-page .main > .container > *:first-child {
  margin-top: 1rem;
}

.memberships-page .main > .container {
  padding-top: 0.8rem;
}

.memberships-page .main > .container > .membership-section:first-child {
  margin-top: 1rem;
}

.hero {
  position: relative;
  background: transparent;
  border: 0;
  border-radius: 22px;
  box-shadow: none;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 1rem;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  background: var(--hero-card-bg);
  border: 1px solid var(--hero-card-border);
  border-radius: 20px;
  padding: 1.3rem 1rem 1.15rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  width: 100%;
  color: var(--text);
  display: grid;
  gap: 0.72rem;
  align-items: center;
  text-align: center;
}

.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 600;
  color: #675850;
}

.script-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--text);
  margin: 0;
}

.hero .script-heading {
  font-size: 2.3rem;
  color: var(--text);
}

.hero h1 {
  margin: 0 auto;
  text-align: center;
  font-size: 2.05rem;
  line-height: 1.14;
  color: var(--text);
}

.hero p {
  margin: 0 auto;
  max-width: 34ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.hero .cta-row {
  margin-top: 0.9rem;
}

.hero-trust-list {
  margin: 1rem auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.52rem;
  width: 100%;
  max-width: 520px;
  padding-top: 0.85rem;
  border-top: 1px solid var(--hero-trust-divider);
  justify-items: center;
}

.hero-trust-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--hero-trust-text);
  padding: 0;
}

.hero-trust-list .trust-icon {
  display: inline-flex;
  width: 1.1rem;
  min-width: 1.1rem;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hero-trust-list .trust-item--rating .trust-icon {
  color: var(--hero-trust-star);
  font-size: 1.02rem;
}

.hero-trust-list .trust-item--press .trust-icon {
  color: var(--hero-trust-icon);
  font-size: 0.88rem;
}

.hero-trust-list .trust-item--licensed .trust-icon {
  width: 1.12rem;
  min-width: 1.12rem;
  height: 1.12rem;
  border: 1px solid var(--hero-trust-icon-border);
  border-radius: 999px;
  color: var(--hero-trust-icon);
  font-size: 0.72rem;
}

.hero .cta-row {
  justify-content: center;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 0.6rem;
  justify-content: center;
}


.animate-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s ease forwards;
}

.animate-in.delay-1 {
  animation-delay: 0.1s;
}

.animate-in.delay-2 {
  animation-delay: 0.2s;
}

.section {
  margin-top: 2.8rem;
  background: var(--surface);
  padding: 2rem 1.5rem;
  border-radius: 18px;
  border: 1px solid #ede5dd;
  box-shadow: none;
}

.section + .section {
  margin-top: 2rem;
}

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

.home-page .section {
  background: linear-gradient(140deg, var(--box-grad-soft-start), var(--box-grad-soft-end));
  border-color: var(--box-grad-soft-border);
}

.home-page .section.alt {
  background: linear-gradient(138deg, var(--box-grad-mid-start), var(--box-grad-mid-end));
  border-color: var(--box-grad-mid-border);
}

.home-page .two-col {
  background: linear-gradient(145deg, var(--box-grad-warm-start), var(--box-grad-warm-end));
  border-color: var(--box-grad-warm-border);
}

.services-page .container {
  padding: 0.8rem 0.9rem 2rem;
}

.services-page .section {
  margin-top: 2rem;
  padding: 1.5rem 1.1rem;
  background: linear-gradient(276deg, var(--box-grad-soft-start), var(--box-grad-soft-end));
  border-color: var(--box-grad-soft-border);
}

.services-page .section + .section {
  margin-top: 1.4rem;
}

.services-page .page-intro {
  background: linear-gradient(145deg, var(--box-grad-warm-start), var(--box-grad-warm-end));
  border-color: var(--box-grad-warm-border);
}

.services-page .section.alt {
  background: linear-gradient(138deg, var(--box-grad-mid-start), var(--box-grad-mid-end));
  border-color: var(--box-grad-mid-border);
}

.services-page .section-header {
  margin-bottom: 1.1rem;
}

.services-page .section p {
  color: #4f453f;
}

.services-page .service-list {
  gap: 0.85rem;
}

.services-page .service-card {
  padding: 0.95rem 1.05rem;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(247, 237, 226, 0.96)),
    linear-gradient(145deg, var(--box-grad-warm-start), var(--box-grad-warm-end));
  border-color: rgba(226, 207, 187, 0.92);
}

.services-page .page-intro {
  display: grid;
  gap: 1rem;
}

.services-page .page-intro .section-header {
  margin-bottom: 0;
}

.services-page .page-intro__summary {
  padding: 1rem 1rem 0.95rem;
  border: 1px solid var(--hero-card-border);
  box-shadow: none;
}

.services-page .page-intro__summary p + p {
  margin-top: 0.7rem;
}

.services-page .page-intro__summary p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.services-page .page-intro__summary strong {
  color: var(--text);
}

.services-page .duration-chips {
  gap: 0.5rem;
}

.reviews-page .section {
  background: linear-gradient(140deg, var(--box-grad-soft-start), var(--box-grad-soft-end));
  border-color: var(--box-grad-soft-border);
}

.reviews-page .page-intro {
  background: linear-gradient(145deg, var(--box-grad-warm-start), var(--box-grad-warm-end));
  border-color: var(--box-grad-warm-border);
}

.reviews-inline-tabs {
  padding: 1.35rem 1.15rem 0.95rem;
}

.reviews-inline-tabs__title {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  line-height: 1.02;
  text-align: center;
}

.reviews-inline-tabs__tablist {
  display: flex;
  align-items: center;
  gap: 0;
  width: min(100%, 48rem);
  margin: 1rem auto 0;
  background: transparent;
  border-top: 1px solid var(--hero-card-border);
  border-bottom: 1px solid var(--hero-card-border);
}

.reviews-inline-tabs__tab {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  min-height: 3.65rem;
  padding: 0.72rem 1.4rem 0.86rem;
  border: 0;
  background: transparent;
  color: var(--event-brown);
  cursor: pointer;
}

.reviews-inline-tabs__tab:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}

.reviews-inline-tabs__tab + .reviews-inline-tabs__tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 1px;
  background: rgba(109, 88, 71, 0.16);
}

.reviews-inline-tabs__tab::after {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 0.24rem;
  height: 2px;
  border-radius: 999px;
  background: transparent;
}

.reviews-inline-tabs__tab.is-active {
  color: var(--text);
}

.reviews-inline-tabs__tab.is-active::after {
  background: var(--event-brown-dark);
}

.reviews-inline-tabs__tab-label {
  font-family: var(--font-ui);
  font-size: 1.14rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.reviews-inline-tabs__tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.22rem;
  height: 1.22rem;
  color: currentColor;
  line-height: 1;
}

.reviews-inline-tabs__tab-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.reviews-inline-tabs__tab-icon--google {
  width: 1.28rem;
  height: 1.28rem;
}

.reviews-inline-tabs__tab-icon--vagaro {
  width: 1.42rem;
  height: 1.42rem;
  border-radius: 999px;
  background: var(--reviews-vagaro-badge);
  color: var(--reviews-vagaro-badge-text);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
}

.reviews-inline-tabs__tab-icon--yelp {
  width: 1.05rem;
  height: 1.18rem;
  color: var(--reviews-yelp-icon);
}

.page-intro {
  text-align: center;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 154, 164, 0.1), rgba(227, 91, 76, 0.18), rgba(0, 154, 164, 0.1));
  margin: 2.6rem auto 0;
  border-radius: 999px;
}

.section h2 {
  margin: 0 0 0.6rem;
  font-size: 1.7rem;
  letter-spacing: 0.01em;
  color: var(--text);
}

.section p {
  color: var(--muted);
  line-height: 1.65;
}

.section-header {
  text-align: center;
  margin-bottom: 1.8rem;
}

.section-header .eyebrow {
  color: #675850;
}

.section-subtitle {
  margin-top: 0.4rem;
}

.eyebrow {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--teal);
}

.two-col {
  display: grid;
  gap: 1.6rem;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: var(--soft-shadow);
}

.card-grid {
  display: grid;
  gap: 1.4rem;
}

.tagline {
  font-size: 0.97rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
}

.feature-card {
  text-align: center;
  padding: 0.75rem;
}

.feature-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.feature-card h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.6rem;
  color: var(--text);
}

.benefit-grid {
  display: grid;
  gap: 1.4rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--soft-shadow);
  border: 1px solid #efe5dc;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 0.8rem;
}

.testimonial-source {
  font-size: 0.9rem;
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  gap: 1.4rem;
}

.home-page .testimonial-section {
  background: linear-gradient(145deg, rgba(249, 244, 237, 0.94), rgba(246, 236, 226, 0.92));
  border: 1px solid rgba(219, 201, 181, 0.58);
}

.review-snippet-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.1rem 1rem;
  border: 1px solid #efe5dc;
  box-shadow: var(--soft-shadow);
}

.review-card--snippet {
  height: 100%;
}

.review-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
}

.review-author {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.28rem;
  line-height: 1.2;
}

.review-meta {
  margin: 0;
  font-size: 0.86rem;
  color: #756960;
  letter-spacing: 0.02em;
}

.review-text {
  margin-top: 0.5rem;
  color: var(--text);
  line-height: 1.6;
}

.review-summary {
  margin: 0.6rem auto 0.9rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.review-source-link {
  display: inline-flex;
  margin-top: 0.55rem;
  color: #0b6870;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.review-source-grid {
  display: grid;
  gap: 1.2rem;
}

.review-source-panel {
  display: grid;
  gap: 0;
}

.review-list {
  display: grid;
  gap: 0.9rem;
}

.reviews-page .review-list {
  gap: 0.2rem;
}

.reviews-page .review-source-grid {
  margin-top: 1rem;
  grid-template-columns: 1fr;
}

.reviews-page .review-source-panel {
  margin-top: 0;
  padding: 0.95rem 1.15rem 1.35rem;
}

.reviews-page .review-source-panel[hidden] {
  display: none;
}

.reviews-page .review-card {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #e8ddd2;
  border-radius: 0;
  box-shadow: none;
  padding: 0.95rem 0;
}

.reviews-page .review-card:last-child {
  border-bottom: 0;
}

.reviews-page .review-note {
  margin-top: 1rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--hero-card-border);
  border-radius: 14px;
  background: var(--surface);
}

.review-note {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  color: #6f645d;
}

.service-list,
.faq-list {
  display: grid;
  gap: 1.1rem;
}

.service-card {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid #eadfd4;
  padding: 1.1rem 1.2rem;
  display: grid;
  gap: 0.65rem;
  box-shadow: none;
  transition: border-color 160ms ease;
}

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

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

.duration-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.duration-chip {
  border: 1px solid #e3d9cf;
  background: #ffffff;
  border-radius: 999px;
  padding: 0 0.95rem;
  min-height: 2.2rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.duration-chip:hover {
  border-color: rgba(0, 154, 164, 0.35);
  color: var(--teal);
}

.duration-chip--featured {
  background: rgba(0, 154, 164, 0.12);
  border-color: rgba(0, 154, 164, 0.55);
  color: #0b5e64;
  font-weight: 600;
}

.duration-chip--featured:hover {
  background: rgba(0, 154, 164, 0.2);
  color: #0b5e64;
}

.badge-favorite {
  background-color: #e8f3f1;
  color: #2b6e66;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  padding: 0.2rem 0.65rem;
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.badge-favorite::before {
  content: "★";
  color: #2b6e66;
  font-size: 0.8rem;
}

.home-page .membership-teaser {
  text-align: center;
  background: linear-gradient(140deg, var(--gift-gradient-start), var(--gift-gradient-end));
  border: 1px solid var(--gift-gradient-border);
  padding: 1.6rem 1.4rem;
}

.membership-teaser .section-header {
  margin-bottom: 0.8rem;
}

.membership-teaser .section-subtitle {
  font-size: 0.95rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.membership-teaser .membership-benefits {
  max-width: 420px;
  margin: 0 auto 1rem;
  text-align: left;
}

.membership-teaser .cta-row {
  margin-top: 0.4rem;
}

.membership-teaser .pill {
  transition: none;
}

.services-page .services-membership-teaser {
  text-align: center;
  background: linear-gradient(140deg, var(--gift-gradient-start), var(--gift-gradient-end));
  border: 1px solid var(--gift-gradient-border);
  padding: 1.35rem 1.15rem;
}

.services-page .services-membership-teaser .section-header {
  margin-bottom: 0.7rem;
}

.services-page .services-membership-teaser .section-subtitle {
  max-width: 34ch;
  margin-left: auto;
  margin-right: auto;
}

.services-page .services-membership-teaser .membership-benefits {
  max-width: 420px;
  margin: 0 auto 0.9rem;
  text-align: left;
}

.services-page .services-membership-teaser .cta-row {
  margin-top: 0.2rem;
}

.home-page .press-feature {
  text-align: center;
  background: linear-gradient(132deg, var(--box-grad-warm-start), var(--box-grad-warm-end));
  border: 1px solid var(--box-grad-warm-border);
}

.press-feature .section-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.press-trust-block {
  margin: 1.1rem 0 1.1rem;
  padding: 1rem;
  border: 1px solid #e8ddd2;
  border-radius: 14px;
  background: #faf5ee;
}

.press-trust-block h3 {
  margin: 0.2rem 0 0.4rem;
  color: var(--text);
  font-size: 1.35rem;
}

.press-trust-block p {
  margin: 0;
}

.press-trust-block .cta-row {
  justify-content: flex-start;
  margin-top: 0.9rem;
}

.press-page-feature {
  text-align: center;
  background: linear-gradient(138deg, rgba(227, 91, 76, 0.05), rgba(0, 154, 164, 0.05));
  border-color: rgba(222, 208, 194, 0.92);
}

.press-page-feature .section-header {
  margin-bottom: 1rem;
}

.press-page-feature p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.press-page-feature__lead {
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.press-page-feature__quote {
  margin: 0 auto 0.9rem;
  max-width: 18ch;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  line-height: 1.12;
  color: var(--text);
}

.press-page-feature__body {
  max-width: 40ch;
}

.press-page-feature .cta-row {
  margin-top: 1.15rem;
}

.cta-banner {
  text-align: center;
  background: linear-gradient(142deg, var(--box-grad-mid-start), var(--box-grad-mid-end));
  border: 1px solid var(--box-grad-mid-border);
}

.home-page .cta-banner.giftcard-banner {
  background: linear-gradient(140deg, var(--gift-gradient-start), var(--gift-gradient-end));
  border: 1px solid var(--gift-gradient-border);
}


.embedded-widget {
  margin-top: 2.4rem;
}

.embedded-widget iframe {
  width: 100%;
  min-height: 760px;
  border: 1px solid #e5ddd3;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  background: #ffffff;
}

.socials {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  font-weight: 600;
}

footer {
  padding: 1.6rem 1.25rem 2.1rem;
  border-top: 1px solid #e5ddd3;
  background: #f7f1ea;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.2rem;
  align-items: start;
}

.footer-title {
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.footer-detail {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 0.3rem;
}

.footer-trust {
  margin: 0;
}

.footer-reviews {
  margin-top: 0.5rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  column-gap: 1.6rem;
  row-gap: 0.65rem;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-social-link {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8b837c;
  background: #fdf9f4;
  border: 1px solid #e1d5c9;
}

.footer-social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

.footer-social-link .icon-fill {
  stroke: none;
  fill: currentColor;
}

.footer-social-link:hover {
  color: #6f655d;
  background: #efe3d7;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.7rem;
  padding-top: 1rem;
  border-top: 1px solid #e5ddd3;
  flex-wrap: wrap;
}

.footer-meta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.footer-separator {
  color: #c2b5aa;
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: none;
  gap: 0.65rem;
  align-items: center;
  padding: 0.62rem 0.82rem
    calc(0.68rem + var(--mobile-cta-safe-bottom) + var(--mobile-cta-browser-gap));
  border-top: 1px solid #e4d8cd;
  background: rgba(247, 241, 234, 0.98);
  box-shadow: 0 -8px 20px rgba(26, 19, 15, 0.12);
}

.mobile-cta {
  min-height: 3rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.mobile-cta--secondary {
  flex: 0 0 40%;
  color: var(--text);
  background: #fffdfa;
  border-color: #e0d3c7;
  box-shadow: 0 8px 18px rgba(47, 38, 34, 0.08);
}

.mobile-cta--primary {
  flex: 1;
  background: #e95f50;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 20px rgba(233, 95, 80, 0.35);
}

.mobile-cta-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.booking-frame {
  width: 100%;
  min-height: 760px;
  border: 1px solid #e5ddd3;
  border-radius: 16px;
  box-shadow: var(--soft-shadow);
  background: #ffffff;
  margin: 0;
  display: block;
}

.booking-page .main .container {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0.3rem 0.3rem 1.6rem;
  max-width: none;
  width: 100%;
}

.booking-page .section {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  min-height: 0;
}

.booking-page .tagline {
  margin: 0 0 1rem;
}

.booking-page .booking-frame {
  flex: 1;
  min-height: 100vh;
  height: 100vh;
}

.booking-page .main {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

@media (max-width: 768px) {
  .booking-page {
    height: 100dvh;
    overflow: hidden;
  }

  .booking-page .site-header,
  .booking-page footer {
    display: none;
  }

  .booking-page .main {
    flex: 1;
    min-height: 0;
  }

  .booking-page .main .container {
    padding: 0;
    max-width: none;
    width: 100%;
    flex: 1;
    min-height: 0;
  }

  .booking-page .section {
    flex: 1;
    gap: 0;
    min-height: 0;
  }

  .booking-page .booking-frame {
    min-height: 100dvh;
    height: 100dvh;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .booking-fallback {
    display: none;
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(220px, 280px));
    justify-content: center;
  }

  .home-page .section {
    max-width: 980px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .home-page .hero {
    max-width: 980px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

  .services-page .container {
    padding: 1.1rem 1.15rem 3rem;
  }

  .services-page .section {
    padding: 1.9rem 1.8rem 2rem;
    max-width: 980px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .services-page .page-intro {
    gap: 1.15rem;
  }

  .services-page .section-header {
    margin-bottom: 1.35rem;
  }

  .services-page .script-heading {
    font-size: clamp(2.35rem, 2.8vw, 3rem);
  }

  .services-page .page-intro__summary {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.15rem 1.35rem 1.1rem;
  }

  .services-page .page-intro__summary p {
    font-size: 1.02rem;
  }

  .services-page .service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }

  .services-page .service-list > .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.5rem);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .services-page .service-card {
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 0.85rem;
    min-height: 100%;
    padding: 1.25rem 1.35rem 1.15rem;
  }

  .services-page .service-card h3 {
    font-size: 1.48rem;
    line-height: 1.15;
  }

  .services-page .service-card__microcopy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .services-page .duration-chips {
    margin-top: auto;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(227, 217, 207, 0.82);
  }

  .services-page .duration-chip {
    min-width: 5.9rem;
    min-height: 2.35rem;
    padding: 0 1.05rem;
    justify-content: center;
  }

  .services-page .services-membership-teaser {
    padding: 1.55rem 1.4rem;
  }

  .services-page .services-membership-teaser .membership-benefits {
    gap: 0.5rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 768px) {
  .services-page .container {
    padding: 0.6rem 0.75rem 1.6rem;
  }

  .services-page .section {
    margin-top: 1.6rem;
    padding: 1.2rem 0.95rem;
  }

  .services-page .page-intro {
    gap: 0.85rem;
  }

  .services-page .section-header {
    margin-bottom: 0.9rem;
  }

  .services-page .service-list {
    gap: 0.75rem;
  }

  .services-page .page-intro__summary {
    padding: 0.95rem 0.95rem 0.9rem;
    border-radius: 16px;
  }

  .services-page .service-card {
    position: relative;
    overflow: hidden;
    padding: 1.05rem 1rem 0.95rem;
    gap: 0.8rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.98), rgba(248, 242, 235, 0.98));
    box-shadow: 0 10px 24px rgba(41, 31, 25, 0.05);
  }

  .services-page .service-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 154, 164, 0.5), rgba(212, 154, 64, 0.42));
  }

  .services-page .service-card h3 {
    font-size: 1.26rem;
    line-height: 1.15;
  }

  .services-page .service-card__microcopy {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .services-page .duration-chips {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
    margin-top: 0.1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(227, 217, 207, 0.9);
  }

  .services-page .duration-chip {
    width: 100%;
    min-height: 2.85rem;
    padding: 0.62rem 0.75rem;
    justify-content: center;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
  }

  .services-page .duration-chip:only-child {
    grid-column: 1 / -1;
  }

  .services-page .duration-chip--featured {
    box-shadow: inset 0 0 0 1px rgba(0, 154, 164, 0.18);
  }
}

@media (max-width: 768px) {
  body.has-mobile-cta {
    padding-bottom: var(--mobile-cta-bar-height);
  }

  .reviews-inline-tabs {
    padding: 1.2rem 0.95rem 0.85rem;
  }

  .reviews-inline-tabs__title {
    font-size: 1.95rem;
  }

  .reviews-inline-tabs__tablist {
    margin-top: 0.8rem;
  }

  .reviews-inline-tabs__tab {
    gap: 0.45rem;
    min-height: 3.1rem;
    padding: 0.62rem 0.85rem 0.76rem;
  }

  .reviews-inline-tabs__tab + .reviews-inline-tabs__tab::before {
    top: 0.62rem;
    bottom: 0.62rem;
  }

  .reviews-inline-tabs__tab::after {
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.22rem;
  }

  .reviews-inline-tabs__tab-label {
    font-size: 1rem;
  }

  .reviews-inline-tabs__tab-icon {
    width: 1rem;
    height: 1rem;
  }

  .reviews-inline-tabs__tab-icon--google {
    width: 1.1rem;
    height: 1.1rem;
  }

  .reviews-inline-tabs__tab-icon--vagaro {
    width: 1.24rem;
    height: 1.24rem;
    font-size: 0.75rem;
  }

  .reviews-inline-tabs__tab-icon--yelp {
    width: 0.86rem;
    height: 0.98rem;
  }

  .membership-price--member .membership-card__cta {
    width: 100%;
    max-width: 100%;
    min-height: 2.8rem;
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  footer {
    padding: 0.6rem 0 0.8rem;
  }

  footer .container {
    padding: 0.35rem 1rem 0.5rem;
  }

  .footer-links {
    column-gap: 1rem;
    font-size: 0.82rem;
  }

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

  .footer-meta {
    font-size: 0.78rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .mobile-cta-bar {
    display: flex;
  }

  .review-card--desktop-only {
    display: none;
  }

}

@supports (height: 100svh) {
  @media (max-width: 768px) {
    .booking-page .booking-frame {
      min-height: 100svh;
    }
  }
}

@media (min-width: 1024px) {
  .booking-page .main .container {
    padding: 0.3rem 0.3rem 1.8rem;
  }
}

.booking-fallback {
  margin: 0;
  font-size: 0.92rem;
  text-align: center;
}

.map-embed {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 14px;
  box-shadow: var(--soft-shadow);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
  max-width: 420px;
  justify-items: center;
}

.success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(0, 154, 164, 0.1);
  color: var(--teal);
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.6rem;
}

.success-hero {
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 154, 164, 0.08) 0%, rgba(227, 91, 76, 0.08) 100%), var(--surface);
  border: 1px solid #e5ddd3;
}

.success-hero h1 {
  margin: 0.4rem 0 0.6rem;
}

.success-copy {
  margin: 0 0 1rem;
}

.success-actions {
  margin-top: 1rem;
  justify-content: center;
}

.contact-action-pill {
  gap: 0.55rem;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
}

.contact-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(0, 154, 164, 0.12);
  color: var(--teal);
  flex-shrink: 0;
}

.contact-action-icon svg {
  width: 0.92rem;
  height: 0.92rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

@media (min-width: 768px) {
  .about-booking-action {
    justify-content: center;
  }

  .about-actions {
    width: fit-content;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
  }

  .success-actions {
    width: fit-content;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
  }
}

.membership-section {
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}

.membership-panel {
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid #e7ddd3;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.membership-panel__header {
  text-align: center;
  padding: 0.9rem 1.2rem 0.7rem;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.85), transparent 60%),
    linear-gradient(160deg, rgba(0, 154, 164, 0.2), rgba(0, 154, 164, 0.04));
  border-bottom: 1px solid #e6ddd3;
}

.membership-panel__title {
  margin: 0.35rem 0 0.15rem;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  line-height: 1.25;
  color: var(--text);
}

.membership-panel__subtitle {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  color: #5d534c;
}

.membership-panel__body {
  padding: 1.6rem 1.4rem 1.8rem;
  display: grid;
  gap: 1.2rem;
}

.membership-toggle-group {
  display: inline-flex;
  align-self: center;
  justify-self: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid #e5ddd3;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.membership-toggle {
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.membership-toggle.is-active {
  background: rgba(0, 154, 164, 0.18);
  color: #0b5e64;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(0, 154, 164, 0.35);
}

.membership-pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  text-align: center;
}

.membership-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.2rem;
}

.membership-price--member {
  background: rgba(0, 154, 164, 0.08);
  border: 1px solid rgba(0, 154, 164, 0.18);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  padding: 0.6rem 0.4rem;
}

.membership-price--single {
  opacity: 0.8;
}

.membership-price__label {
  margin: 0;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.72rem;
  color: #766c65;
}

.membership-price__value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  font-family: var(--font-body);
  color: var(--text);
}

.membership-price__amount {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.membership-price--member .membership-price__amount {
  font-weight: 700;
}

.membership-price__term {
  font-size: 0.9rem;
  color: #6f645d;
}

.membership-price__note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.membership-price__cta {
  margin-top: 0.3rem;
  white-space: nowrap;
}

.membership-pricing .membership-card__cta {
  min-height: 2.6rem;
  padding: 0 1.1rem;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
}

.membership-card__cta {
  margin-top: auto;
  min-height: 2.9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 1.6rem;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.membership-card__cta:hover {
  transform: translateY(-1px);
}

.membership-card__cta--primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(227, 91, 76, 0.25);
}

.membership-card__cta--secondary {
  background: #ffffff;
  border-color: #e0d3c7;
  color: var(--text);
  box-shadow: 0 8px 16px rgba(47, 38, 34, 0.08);
}

.membership-panel__details {
  border-top: 1px solid #e8ddd2;
  padding-top: 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.membership-panel__details h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text);
}

.membership-benefits {
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.membership-benefits li {
  position: relative;
  padding-left: 2.2rem;
  line-height: 1.6;
}

.membership-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, rgba(0, 154, 164, 0.18));
  border: 1px solid rgba(0, 154, 164, 0.4);
  box-shadow: 0 6px 12px rgba(12, 96, 102, 0.18);
}

.membership-benefits li::after {
  content: "";
  position: absolute;
  left: 0.36rem;
  top: 0.55em;
  width: 0.28rem;
  height: 0.55rem;
  border-right: 2px solid #0b5e64;
  border-bottom: 2px solid #0b5e64;
  transform: rotate(45deg);
}

@media (min-width: 600px) {
  .cta-row {
    flex-direction: row;
  }
}

@media (max-width: 520px) {
  .membership-teaser {
    padding: 1.3rem 1.1rem;
  }

  .membership-teaser .section-subtitle {
    font-size: 0.9rem;
  }

  .services-page .services-membership-teaser {
    padding: 1.2rem 1rem;
  }

  .services-page .services-membership-teaser .membership-benefits {
    gap: 0.35rem;
    margin-bottom: 0.75rem;
  }

  .hero {
    padding: 0.55rem;
    margin-top: 0.85rem;
  }

  .hero-card {
    padding: 1.2rem 0.95rem 1.05rem;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .membership-panel__title {
    font-size: 0.95rem;
  }

  .membership-price__amount {
    font-size: 1.9rem;
  }

  .membership-panel__header {
    padding: 0.75rem 1rem 0.6rem;
  }

  .membership-panel__subtitle {
    font-size: 0.86rem;
    margin-bottom: 0.4rem;
  }
}

@media (min-width: 768px) {
  .membership-panel__body {
    padding: 2rem 2.2rem 2.4rem;
  }

  .membership-panel__title {
    font-size: 1.55rem;
  }

  .membership-toggle {
    font-size: 1.1rem;
  }

  .container {
    padding: 1.5rem 1.5rem 3rem;
  }

  .nav {
    min-height: 4.4rem;
    padding: 0.55rem 1.15rem;
  }

  .logo {
    font-size: 1.7rem;
  }

  .hero {
    justify-content: center;
  }

  .hero-card {
    max-width: 100%;
    padding: 1.8rem 1.7rem 1.55rem;
  }

  .hero-content {
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .cta-row {
    justify-content: center;
  }

  .hero-trust-list {
    margin-left: auto;
    margin-right: auto;
  }

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

  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .card-grid,
  .benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .review-snippet-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .review-source-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: start;
  }

  .home-page .cta-banner {
    text-align: left;
  }

}

@media (min-width: 1024px) {
  .reviews-inline-tabs {
    padding: 1.6rem 1.6rem 1rem;
  }

  .nav {
    justify-content: space-between;
    min-height: 4.5rem;
    padding: 0.6rem 1.25rem;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row;
    gap: 0.5rem;
    border: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0.9rem;
    max-height: none;
    overflow: visible;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .nav-links a {
    padding: 0.42rem 0.66rem;
    border-radius: 12px;
    opacity: 1;
    transition: none;
  }

  .nav-links a.nav-desktop-only {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links a.nav-link-gift {
    border: 1px solid #e3d7cb;
    background: #fffdf9;
    color: var(--text);
    border-radius: 14px;
    padding: 0.5rem 0.92rem;
  }

  .nav-links a.nav-link-book {
    background: var(--accent);
    color: #ffffff;
    border: 1px solid var(--accent);
    box-shadow: none;
    font-weight: 800;
    letter-spacing: 0.06em;
    border-radius: 14px;
    padding: 0.58rem 1rem;
  }

  @media (hover: hover) and (pointer: fine) {
    .nav-links a.nav-link-gift:hover {
      background: #f4ece3;
      color: var(--text);
    }

    .nav-links a.nav-link-book:hover {
      background: #cf4f42;
      border-color: #cf4f42;
      color: #ffffff;
      opacity: 0.94;
    }
  }

  .nav-socials {
    display: none;
    opacity: 1;
    transition: none;
  }

  .hero {
    padding: 1.45rem 1.4rem;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

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

  .section {
    padding: 2.6rem 2.4rem;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .nav {
    min-height: 4.35rem;
    padding: 0.55rem 1rem;
  }

  .logo {
    font-size: 1.64rem;
    letter-spacing: 0.03em;
  }

  .nav-links {
    gap: 0.35rem;
    font-size: 0.84rem;
    letter-spacing: 0.07em;
  }

  .nav-links a {
    padding: 0.38rem 0.54rem;
  }

  .nav-links a.nav-link-gift {
    border-radius: 12px;
    padding: 0.42rem 0.78rem;
  }

  .nav-links a.nav-link-book {
    border-radius: 12px;
    letter-spacing: 0.055em;
    padding: 0.5rem 0.88rem;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-in {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .nav-links,
  .nav-links a,
  .nav-socials,
  .menu-toggle span {
    transition: none;
  }

}

/* /book bridge page */
.book-bridge-page {
  background:
    radial-gradient(circle at 15% 20%, var(--surface-soft) 0%, transparent 56%),
    radial-gradient(circle at 88% 85%, rgba(227, 91, 76, 0.08) 0%, transparent 48%),
    var(--bg);
}

.book-bridge-main {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.65rem 1rem 1rem;
}

.book-bridge-card {
  width: min(100%, 34rem);
  padding: 1.4rem 1.1rem;
  border-radius: 18px;
  border: 1px solid #e5ddd3;
  background: var(--surface);
  box-shadow: var(--soft-shadow);
}

.book-bridge-card h1 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(2rem, 9vw, 2.6rem);
  line-height: 1.05;
}

.book-bridge-speed {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

.book-bridge-trust {
  margin: 12px 0 16px;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.34rem;
  color: var(--text);
}

.book-bridge-cta {
  width: 100%;
  max-width: 420px;
  min-height: 56px;
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  text-transform: uppercase;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border: 1px solid var(--accent);
  margin: 20px 0 18px;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
  box-shadow: none;
}

.book-bridge-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: none;
  opacity: 0.95;
}

.book-bridge-cta:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  transform: translateY(-1px);
  box-shadow: none;
}

.book-bridge-vagaro-trust {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  opacity: 0.7;
}

.book-bridge-note {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  opacity: 0.7;
}

.book-bridge-legal {
  margin-top: 0.7rem;
  font-size: 12px;
  line-height: 1.35;
  color: var(--muted);
  opacity: 0.72;
  text-align: center;
}

.book-bridge-legal a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.book-bridge-legal a:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .book-bridge-main {
    padding: 1.6rem;
    align-items: flex-start;
  }

  .book-bridge-card {
    width: 100%;
    max-width: 560px;
    margin-top: 70px;
    padding: 40px;
  }

  .book-bridge-cta {
    min-height: 60px;
    padding: 0 36px;
    font-size: 18px;
    border-radius: 32px;
  }

  .book-bridge-cta:hover {
    background: #cf4f42;
    border-color: #cf4f42;
  }

  .book-bridge-trust {
    margin-top: 24px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .book-bridge-legal {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.6;
  }

  .book-bridge-note {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.6;
  }
}
